diff options
author | Ye Li <ye.li@nxp.com> | 2017-03-16 13:31:38 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-05 17:24:33 +0800 |
commit | a4d958d120d29f6f79e9023715a42bac582f4c76 (patch) | |
tree | ba9ba3ae35b07b7a199fa78c7a06bd1705dcce81 | |
parent | b523a4b1f38c36ec6568774ba7ca72a10bf6996e (diff) | |
download | u-boot-imx-a4d958d120d29f6f79e9023715a42bac582f4c76.zip u-boot-imx-a4d958d120d29f6f79e9023715a42bac582f4c76.tar.gz u-boot-imx-a4d958d120d29f6f79e9023715a42bac582f4c76.tar.bz2 |
MLK-14445-1 mx7ulp: Add CONFIG_MX7ULP to kconfig
Since many drivers need this CONFIG_MX7ULP to distiguish the settings
for i.MX7ULP only. Add this entry to cpu's kconfig.
Signed-off-by: Ye Li <ye.li@nxp.com>
-rw-r--r-- | arch/arm/cpu/armv7/mx7ulp/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx7ulp/Kconfig b/arch/arm/cpu/armv7/mx7ulp/Kconfig index a1db6c4..284f9ff 100644 --- a/arch/arm/cpu/armv7/mx7ulp/Kconfig +++ b/arch/arm/cpu/armv7/mx7ulp/Kconfig @@ -9,12 +9,16 @@ config IMX_M4_BIND Select this to bind a ULP M4 image to final u-boot image User needs put the M4 image ulp_m4.bin under u-boot directory +config MX7ULP + bool + choice prompt "MX7ULP board select" optional config TARGET_MX7ULP_EVK bool "Support mx7ulp EVK board" + select MX7ULP endchoice |