...
u-boot/configs/imxrt1060-evk-sdcard_defconfig - default U-Boot configuration;
u-boot/include/configs/imxrt1050-evk.h - configuration options;
u-boot/board/freescale/imxrt1050-evk/imxrt1050-evk.c - board-specific initialization code.
Step through the following procedure to build U-Boot for the NXP i.MX RT1050 EVK board:
On the Linux development host, activate the cross-build environment as described in Installing and Activating Cross Development Environment :
Code Block $ . ./ACTIVATE.sh
Change to the U-Boot top directory:
Code Block $ cd u-boot
Configure U-Boot for the NXP i.MX RT1050 EVK EVKB board:
Code Block $ make mrproper
$ make imxrt1050-evk-sdcard_defconfig
Run make to create the U-Boot binaries (SPL and
u-boot.img
):Code Block $ make -s
Step through the following procedure to build U-Boot for the NXP i.MX RT1060 EVK board:
On the Linux development host, activate the cross-build environment as described in Installing and Activating Cross Development Environment :
Code Block $ . ./ACTIVATE.sh
Change to the U-Boot top directory:
Code Block $ cd u-boot
Configure U-Boot for the NXP i.MX RT1060 EVK EVKB board:
Code Block $ make mrproper
$ make imxrt1060-evk-sdcard_defconfig
Run make to create the U-Boot binaries (SPL and
u-boot.img
):Code Block $ make -s