u-boot-brain/board/udoo
Simon Glass c05ed00afb common: Drop linux/delay.h from common header
Move this uncommon header out of the common header.

Signed-off-by: Simon Glass <sjg@chromium.org>
2020-05-18 21:19:23 -04:00
..
neo common: Drop linux/delay.h from common header 2020-05-18 21:19:23 -04:00
Kconfig
MAINTAINERS
Makefile SPDX: Convert all of our single license tags to Linux Kernel style 2018-05-07 09:34:12 -04:00
README
udoo_spl.c common: Drop linux/delay.h from common header 2020-05-18 21:19:23 -04:00
udoo.c common: Drop linux/delay.h from common header 2020-05-18 21:19:23 -04:00

How to use U-Boot on MX6Q/DL Udoo boards
----------------------------------------

- Build U-Boot for MX6Q/DL Udoo boards:

$ make mrproper
$ make udoo_defconfig
$ make

This will generate the SPL image called SPL and the u-boot.img.

- Flash the SPL image into the SD card:

sudo dd if=SPL of=/dev/mmcblk0 bs=1k seek=1; sync

- Flash the u-boot.img image into the SD card:

sudo dd if=u-boot.img of=/dev/mmcblk0 bs=1k seek=69; sync

- Insert the SD card in the board, power it up and U-Boot messages should
come up.