Hi,
In order to flash U-boot to SD card the following two commands are given:
sudo dd if=SPL of=/dev/sdc bs=1k seek=1
sudo dd if=u-boot.img of=/dev/sdc bs=1k seek=69
I understand the seek=1 in the first command which is to satisfy the 0x400 offset requirement of SD card (https://github.com/lentinj/u-boot/blob/master/doc/README.imximage). How about seek=69 in the second command? Can this offset be changed? If not where is the requirement documented?
Thanks!