mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-04 07:17:17 +00:00
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>
16 lines
224 B
Text
16 lines
224 B
Text
# SPDX-License-Identifier: GPL-2.0
|
|
if TARGET_LS1021ATSN
|
|
|
|
config SYS_BOARD
|
|
default "ls1021atsn"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "ls102xa"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls1021atsn"
|
|
|
|
endif
|