Installing u-boot to an SD card for BeagleBoard X15

Hi,

How do I install u-boot to an SD card for booting a BeagleBoard X15? I
can't find this information anywhere on the web or in any of the manuals.

Thanks,

Bob

It's the same as the BeagleBone Black:

sudo dd if=./u-boot/MLO of=${DISK} count=2 seek=1 bs=128k
sudo dd if=./u-boot/u-boot.img of=${DISK} count=4 seek=1 bs=384k

Regards,