Simon Glass 5255932f01 common: Move some board functions out of common.h преди 4 години
..
neo 5255932f01 common: Move some board functions out of common.h преди 4 години
Kconfig f20562e4c4 mx6: remove SYS_SOC from board Kconfig преди 8 години
MAINTAINERS c5f18a0b69 MAINTAINERS/mailmap: Update my email address преди 8 години
Makefile 83d290c56f SPDX: Convert all of our single license tags to Linux Kernel style преди 6 години
README 5b0d03b306 udoo: Add a README file преди 7 години
udoo.c 5255932f01 common: Move some board functions out of common.h преди 4 години
udoo_spl.c e37ac717d7 Convert to use fsl_esdhc_imx for i.MX platforms преди 5 години

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.