Hello AldoG,
Thanks for replying to my question.
I am in particular interested in blowing the fuse from user space rather than from uboot. In one of the previous discussions regarding this topic, I have seen a code snippet (attached below) which was writing to the register corresponding to MAC address:
from struct import pack
f = open('/sys/devices/platform/30350000.ocotp-ctrl/imx-ocotp0/nvmem', 'br+')
f.seek(0x90) # SRK0 position
f.write(pack('<L', 0xffffffff))
f.close()
So my question is will this above code snippet help me to program the MAC address from user space?
Also if my MAC address is of format Aa:Bb:Cc:Dd:Ee:Ff how will I use this in the above code snippet?