diff options
author | Lukasz Majewski <lukma@denx.de> | 2020-12-26 01:09:01 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-01-08 08:41:55 -0500 |
commit | ee66df1425791fe65ccb7b9bfcfd92f3587a0f1d (patch) | |
tree | fd8f32aac68356418f85dd11b9a5756df2d96c65 /configs/imx28_xea_defconfig | |
parent | a062d8e610bf71525f4243638f1864e8d1309adb (diff) | |
download | u-boot-ee66df1425791fe65ccb7b9bfcfd92f3587a0f1d.tar.gz u-boot-ee66df1425791fe65ccb7b9bfcfd92f3587a0f1d.tar.bz2 u-boot-ee66df1425791fe65ccb7b9bfcfd92f3587a0f1d.zip |
xea: config: Use CONFIG_PREBOOT from Kconfig
The usage of the preboot feature is now controlled via a separate Kconfig
option - namely CONFIG_USE_PREBOOT.
It must be enabled for preboot code executing commands now defined in
CONFIG_PREBOOT (also moved to the Kconfig).
After defining both CONFIG_USE_PREBOOT and CONFIG_PREBOOT in
imx28_xea_defconfig the define of CONFIG_PREBOOT shall be removed from
xea.h as it is redundant.
Signed-off-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'configs/imx28_xea_defconfig')
-rw-r--r-- | configs/imx28_xea_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/imx28_xea_defconfig b/configs/imx28_xea_defconfig index dc42e30a1f..e418d8c9e9 100644 --- a/configs/imx28_xea_defconfig +++ b/configs/imx28_xea_defconfig @@ -25,6 +25,8 @@ CONFIG_FIT=y CONFIG_OF_BOARD_SETUP=y CONFIG_USE_BOOTARGS=y CONFIG_BOOTARGS="console=ttyAMA0,115200n8" +CONFIG_USE_PREBOOT=y +CONFIG_PREBOOT="run prebootcmd" CONFIG_BOARD_EARLY_INIT_F=y CONFIG_SPL_BOARD_INIT=y # CONFIG_SPL_RAW_IMAGE_SUPPORT is not set |