u-boot-brain/board/udoo
Simon Glass 5255932f01 common: Move some board functions out of common.h
A number of board function belong in init.h with the others. Move them.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
2019-12-02 18:25:21 -05:00
..
neo common: Move some board functions out of common.h 2019-12-02 18:25:21 -05:00
Kconfig mx6: remove SYS_SOC from board Kconfig 2015-09-13 10:37:29 +02:00
MAINTAINERS MAINTAINERS/mailmap: Update my email address 2016-01-11 11:22:43 -05:00
Makefile SPDX: Convert all of our single license tags to Linux Kernel style 2018-05-07 09:34:12 -04:00
README udoo: Add a README file 2016-10-06 09:40:34 +02:00
udoo.c common: Move some board functions out of common.h 2019-12-02 18:25:21 -05:00
udoo_spl.c Convert to use fsl_esdhc_imx for i.MX platforms 2019-06-23 14:18:34 +08:00

README

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.