
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>
39 lines
446 B
Plaintext
39 lines
446 B
Plaintext
if TARGET_P3041DS
|
|
|
|
config SYS_BOARD
|
|
default "corenet_ds"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "P3041DS"
|
|
|
|
endif
|
|
|
|
if TARGET_P4080DS
|
|
|
|
config SYS_BOARD
|
|
default "corenet_ds"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "P4080DS"
|
|
|
|
endif
|
|
|
|
if TARGET_P5040DS
|
|
|
|
config SYS_BOARD
|
|
default "corenet_ds"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "P5040DS"
|
|
|
|
endif
|