Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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:

  1. On the Linux development host, activate the cross-build environment as described in Installing and Activating Cross Development Environment :

    Code Block
    $ . ./ACTIVATE.sh
  2. Change to the U-Boot top directory:

    Code Block
    $ cd u-boot
  3. Configure U-Boot for the NXP i.MX RT1050 EVK EVKB board:

    Code Block
    $ make mrproper
    
    $ make imxrt1050-evk-sdcard_defconfig
  4. 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:

  1. On the Linux development host, activate the cross-build environment as described in Installing and Activating Cross Development Environment :

    Code Block
    $ . ./ACTIVATE.sh
  2. Change to the U-Boot top directory:

    Code Block
    $ cd u-boot
  3. Configure U-Boot for the NXP i.MX RT1060 EVK EVKB board:

    Code Block
    $ make mrproper

    
    $ make imxrt1060-evk-sdcard_defconfig
  4. Run make to create the U-Boot binaries (SPL and u-boot.img):

    Code Block
    $ make -s