diff options
author | Breno Lima <breno.lima@nxp.com> | 2016-12-01 16:37:37 -0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-12-16 10:20:10 +0100 |
commit | 4a056c4504d078356fa3afcaed963d31d5e901c7 (patch) | |
tree | 52c3f79efc16a9373a8289944d91bad952f1a03a | |
parent | c94981efa20cc5861caad6a53e589121bf978fb1 (diff) | |
download | u-boot-4a056c4504d078356fa3afcaed963d31d5e901c7.tar.gz |
udoo_neo: Move MX6SX configuration to Kconfig
It's not necessary to define the processor in the defconfig file.
The preferred method to select the SoC is via Kconfig file.
Signed-off-by: Breno Lima <breno.lima@nxp.com>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
-rw-r--r-- | arch/arm/cpu/armv7/mx6/Kconfig | 1 | ||||
-rw-r--r-- | configs/udoo_neo_defconfig | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/mx6/Kconfig b/arch/arm/cpu/armv7/mx6/Kconfig index 5a8c7bf484..cca8a8755c 100644 --- a/arch/arm/cpu/armv7/mx6/Kconfig +++ b/arch/arm/cpu/armv7/mx6/Kconfig @@ -217,6 +217,7 @@ config TARGET_UDOO config TARGET_UDOO_NEO bool "UDOO Neo" select SUPPORT_SPL + select MX6SX config TARGET_SAMTEC_VINING_2000 bool "samtec VIN|ING 2000" diff --git a/configs/udoo_neo_defconfig b/configs/udoo_neo_defconfig index 3304afb33c..f88820c232 100644 --- a/configs/udoo_neo_defconfig +++ b/configs/udoo_neo_defconfig @@ -11,7 +11,7 @@ CONFIG_SPL_SERIAL_SUPPORT=y CONFIG_SPL_ENV_SUPPORT=y CONFIG_SPL_WATCHDOG_SUPPORT=y CONFIG_SPL=y -CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/imx-common/spl_sd.cfg,MX6SX" +CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/imx-common/spl_sd.cfg" CONFIG_HUSH_PARSER=y CONFIG_CMD_BOOTZ=y # CONFIG_CMD_IMLS is not set |