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:
- Prepare an SD card using some generic image. For example from here but you can use the flasher image as well.
- Boot from the SD card (hold the Boot Button during power on).
- ssh to your BeagleBone
- you can save the image on your SD card or transfer it to a server
- to save the image to your SD card first create a partition for it or mount an external USB drive (my favourite option) then create eMMC image:
sudo dd if=/dev/mmcblk1 of=/mnt/usb/BeagleBoneEMMC.img bs=10M
- or scp the image straight to your backup server:
sudo dd if=/dev/mmcblk1 | ssh user@targetserver 'dd of=BeagleBoneEMMC.img'
After that, you can use dd
to prepare the SD cards.