hudyj
How do you write the u-boot on the sd card? Do you have linux?
Try the following steps:
1. Determine the exact name of your block device sdX (sd card) with the lsblk command.
2. Unmount the FAT partition of the found block device
3. Clean the unpartitioned area on the SD card
sudo dd if=/dev/zero of=/dev/sdX bs=1 count=444
sudo dd if=/dev/zero of=/dev/sdX bs=512 skip=1 seek=1 count=2047
4. Write this u-boot.bin.sd.bin binary
sudo dd if=u-boot.bin.sd.bin of=/dev/sdX conv=fsync,notrunc bs=1 count=444
sudo dd if=u-boot.bin.sd.bin of=/dev/sdX conv=fsync,notrunc bs=512 skip=1 seek=1
sudo eject /dev/sdX