mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 17:41:08 +00:00
89ebc82137
Freescale boards are currently all defined in arch/arm/Kconfig, which makes them hard to detect. Moreover the MX6 SoC variant (Q, D, DL, S, SL) selection is currently done via the SYS_EXTRA_OPTIONS option which marked as deprecated. Move to a more standard way to select sub-architecture and board by creating a Kconfig under arch/arm/cpu/armv7/mx6 and a new ARCH_MX6 option. Existing MX6 board definitions should be moved in this new Kconfig in choice menu, and new boards should be directly declared in this menu. Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
31 lines
217 B
Text
31 lines
217 B
Text
if ARCH_MX6
|
|
|
|
config MX6
|
|
bool
|
|
default y
|
|
|
|
config MX6D
|
|
bool
|
|
|
|
config MX6DL
|
|
bool
|
|
|
|
config MX6Q
|
|
bool
|
|
|
|
config MX6QDL
|
|
bool
|
|
|
|
config MX6S
|
|
bool
|
|
|
|
config MX6SL
|
|
bool
|
|
|
|
config MX6SX
|
|
bool
|
|
|
|
config SYS_SOC
|
|
default "mx6"
|
|
|
|
endif
|