Revert back to SD card booting

I was trying to setup for network booting; But it is throwing Bad Linux ARM64 Image magic!

I want to go back to SD card Booting as I need to check some algorithm;

Please suggest me steps to follow I tried to set default environment.

Thank you

Parents Reply
  • Try manually entering these commands.

    => mmc dev 1 ; fatload mmc 1:1 0x48080000 Image.bin ; fatload mmc 1:1 0x48000000 r9a07g054l2-smarc.dtb

    => setenv bootargs 'root=/dev/mmcblk1p2 rootwait' ; booti 0x48080000 - 0x48000000

    This assumes you have partitioned your SD card correctly and have the file "Image.bin" and "r9a07g054l2-smarc.dtb" in the FAT partition.

    Note that Image.bin might be a different filename for that board (I can't remember)

Children