1Update from original Marvell U-Boot to mainline U-Boot: 2------------------------------------------------------- 3 4Generate the U-Boot image with these commands: 5 6$ make clearfog_defconfig 7$ make 8 9The resulting image including the SPL binary with the 10full DDR setup is "u-boot-spl.kwb". 11 12Now all you need to do is copy this image on a SD card. 13For example with this command: 14 15$ sudo dd if=u-boot-spl.kwb of=/dev/sdX bs=512 seek=1 16 17Please use the correct device node for your setup instead 18of "/dev/sdX" here! 19