mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
d648964fc2
Now CONFIG_SPL_BUILD is not defined in Kconfig, so "!depends on SPL_BUILD" and "if !SPL_BUILD" are redundant. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
22 lines
325 B
Text
22 lines
325 B
Text
if ARCH_S5PC1XX
|
|
|
|
choice
|
|
prompt "S5PC1XX board select"
|
|
|
|
config TARGET_S5P_GONI
|
|
bool "S5P Goni board"
|
|
select OF_CONTROL
|
|
|
|
config TARGET_SMDKC100
|
|
bool "Support smdkc100 board"
|
|
select OF_CONTROL
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "s5pc1xx"
|
|
|
|
source "board/samsung/goni/Kconfig"
|
|
source "board/samsung/smdkc100/Kconfig"
|
|
|
|
endif
|