mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
e2932310a5
Move all exynos boards over to use CONFIG_BLK. This converts s5p_goni also, but adding dummy functions for pinmux and peripheral ID. This will not function correctly, but gives the maintainer more time to convert the board if desired. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
25 lines
362 B
Text
25 lines
362 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
|
|
|
|
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
|