mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
4982e123b2
This option controls using board/samsung/common/misc.c, so add a Kconfig file there as well and select it from the boards which use this functionality. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
26 lines
382 B
Text
26 lines
382 B
Text
if ARCH_S5PC1XX
|
|
|
|
choice
|
|
prompt "S5PC1XX board select"
|
|
optional
|
|
|
|
config TARGET_S5P_GONI
|
|
bool "S5P Goni board"
|
|
select OF_CONTROL
|
|
select BLK
|
|
select DM_MMC
|
|
select MISC_COMMON
|
|
|
|
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
|