diff options
author | Alice Guo | 2020-12-18 15:19:26 +0800 |
---|---|---|
committer | Stefano Babic | 2021-01-23 11:30:31 +0100 |
commit | 9b162b1d1fa1e61158943f9a8d6dd16c61ad6d76 (patch) | |
tree | bd0ec6ed2375f2b6419b75bd437f53e2fdbe1e70 /configs | |
parent | 9b8656bd2ba1ffc10e4e927da3c491c844369bd4 (diff) |
imx8mp: configs: add support for distro boot commands
Supported boot device types in iMX8MP: MMC.
CONFIG_CMD_PART is added for command part and CONFIG_CMD_FS_GENERIC is
for command fstype.
scriptaddr is the location in RAM where boot.scr.uimg/boot.scr will be
loaded to prior to execution. kernel_addr_r is the location in RAM where
the kernel will be loaded to. Delete unnecessary environment variables
because "run distro_bootcmd" is set to be the default boot mode.
On the iMX8MP platform I used, "mmc1" represents SD card and "mmc2"
represents eMMC.
Signed-off-by: Alice Guo <alice.guo@nxp.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/imx8mp_evk_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/imx8mp_evk_defconfig b/configs/imx8mp_evk_defconfig index 2e4f517c515..1d6255f31f0 100644 --- a/configs/imx8mp_evk_defconfig +++ b/configs/imx8mp_evk_defconfig @@ -54,6 +54,8 @@ CONFIG_CMD_EXT2=y CONFIG_CMD_EXT4=y CONFIG_CMD_EXT4_WRITE=y CONFIG_CMD_FAT=y +CONFIG_CMD_PART=y +CONFIG_CMD_FS_GENERIC=y CONFIG_OF_CONTROL=y CONFIG_SPL_OF_CONTROL=y CONFIG_ENV_OVERWRITE=y |