mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 14:23:00 +00:00
16e16fdde2
Becuase the board select menu in arch/arm/Kconfig is too big, move the Nomadik board select menu to nomadik/Kconfig. Move also common settings (CONFIG_SYS_CPU="arm926ejs" and CONFIG_SYS_SOC="nomadik"). Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
21 lines
257 B
Text
21 lines
257 B
Text
if ARCH_NOMADIK
|
|
|
|
choice
|
|
prompt "Nomadik board select"
|
|
|
|
config NOMADIK_NHK8815
|
|
bool "ST 8815 Nomadik Hardware Kit"
|
|
|
|
endchoice
|
|
|
|
config SYS_CPU
|
|
string
|
|
default "arm926ejs"
|
|
|
|
config SYS_SOC
|
|
string
|
|
default "nomadik"
|
|
|
|
source "board/st/nhk8815/Kconfig"
|
|
|
|
endif
|