summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2018-09-24 19:35:14 -0700
committerYe Li <ye.li@nxp.com>2018-09-24 22:28:35 -0700
commit0f3667ddd4dae02d0d309fe68df26979d9e3c432 (patch)
tree3d49c2cb5d066a22aa516b4751745c95ef96a063 /arch
parent23487f8f3ea5406fe37a15f4191ca9ed5350829d (diff)
MLK-19690 mx7ulp: Fix issue in selecting BOARD_LATE_INIT configuration
The BOARD_LATE_INIT config does not have input prompt, so we can't configure it to Y in defconfig. Modify the Kconfig in mx7ulp to select the BOARD_LATE_INIT when the boards are used. Signed-off-by: Ye Li <ye.li@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-imx/mx7ulp/Kconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mx7ulp/Kconfig b/arch/arm/mach-imx/mx7ulp/Kconfig
index 20c32acfe64..600ce3b70c9 100644
--- a/arch/arm/mach-imx/mx7ulp/Kconfig
+++ b/arch/arm/mach-imx/mx7ulp/Kconfig
@@ -19,14 +19,17 @@ choice
config TARGET_MX7ULP_10X10_ARM2
bool "Support mx7ulp 10x10 validation board"
+ select BOARD_LATE_INIT
select MX7ULP
config TARGET_MX7ULP_14X14_ARM2
bool "Support mx7ulp 14x14 validation board"
+ select BOARD_LATE_INIT
select MX7ULP
config TARGET_MX7ULP_EVK
- bool "Support mx7ulp EVK board"
+ bool "Support mx7ulp EVK board"
+ select BOARD_LATE_INIT
select MX7ULP
endchoice