mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
93145335fb
The way that we use this file currently means that we have to guard it in every platform Kconfig. But it is also required in all NXP platforms, including non-reference platforms. Make all options in it have appropriate dependencies so that we can include it a single time under arch/Kconfig Signed-off-by: Tom Rini <trini@konsulko.com>
47 lines
581 B
Text
47 lines
581 B
Text
if TARGET_LX2160ARDB
|
|
|
|
config SYS_BOARD
|
|
default "lx2160a"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "lx2160ardb"
|
|
|
|
endif
|
|
|
|
if TARGET_LX2160AQDS
|
|
|
|
config SYS_BOARD
|
|
default "lx2160a"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "lx2160aqds"
|
|
|
|
endif
|
|
|
|
if TARGET_LX2162AQDS
|
|
|
|
config SYS_BOARD
|
|
default "lx2160a"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "lx2162aqds"
|
|
|
|
endif
|