u-boot-brain/board/udoo
Peter Robinson d410dc8802 ARM: imx: udoo_neo: Convert to ethernet DM
Convert the UDOO Neo to ethernet DM support.

Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
Cc: Francesco Montefoschi <francesco.montefoschi@udoo.org>
Cc: Breno Lima <breno.lima@nxp.com>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
2021-04-20 13:31:35 -04:00
..
neo ARM: imx: udoo_neo: Convert to ethernet DM 2021-04-20 13:31:35 -04:00
Kconfig mx6: remove SYS_SOC from board Kconfig 2015-09-13 10:37:29 +02:00
MAINTAINERS MAINTAINERS: Use my personal e-mail address 2021-04-08 20:29:53 +02: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 ARM: imx: udoo: convert to DM_ETH 2021-04-08 20:29:54 +02:00
udoo_spl.c common: Drop linux/delay.h from common header 2020-05-18 21:19:23 -04: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.