I have an emmc-flasher angstrom image on my BBB, I want to copy the content of the emmc image on an SD card and make it as an emmc-flasher so that I can flash the other BBB with the changes I made on the current BBB. Tried following this method but didn't worked
http://elinux.org/BeagleBone_Black_Extracting_eMMC_contents
any guesses or clues ?
Some boards can't boot up from the SD card prepared according to the instruction you are referring to.
If this is the case then you can use alternative method:
sudo dd if=/dev/mmcblk1 of=/mnt/usb/BeagleBoneEMMC.img bs=10Msudo dd if=/dev/mmcblk1 | ssh user@targetserver 'dd of=BeagleBoneEMMC.img'After that, you can use
ddto prepare the SD cards.