mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
6d846c726b
Rework unified section macro select via Kconfig option instead of macro definition in mx7_common header file. Signed-off-by: Adrian Alonso <aalonso@freescale.com>
28 lines
335 B
Text
28 lines
335 B
Text
if ARCH_MX7
|
|
|
|
config MX7
|
|
bool
|
|
select ROM_UNIFIED_SECTIONS
|
|
default y
|
|
|
|
config MX7D
|
|
select ROM_UNIFIED_SECTIONS
|
|
bool
|
|
|
|
choice
|
|
prompt "MX7 board select"
|
|
optional
|
|
|
|
config TARGET_MX7DSABRESD
|
|
bool "mx7dsabresd"
|
|
select DM
|
|
select DM_THERMAL
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "mx7"
|
|
|
|
source "board/freescale/mx7dsabresd/Kconfig"
|
|
|
|
endif
|