diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-08-31 07:11:08 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-30 21:22:00 -0400 |
commit | 16e16fdde21c9255e338d2eaea339c3ca905da22 (patch) | |
tree | b94064ad61fe5a771545373f92ef7cd324a000f4 /arch/arm/cpu/arm926ejs | |
parent | ef2b694c731f93a70aa06e84b52a27f6cc9dbc10 (diff) | |
download | u-boot-imx-16e16fdde21c9255e338d2eaea339c3ca905da22.zip u-boot-imx-16e16fdde21c9255e338d2eaea339c3ca905da22.tar.gz u-boot-imx-16e16fdde21c9255e338d2eaea339c3ca905da22.tar.bz2 |
nomadik: kconfig: move board select menu and common settings
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>
Diffstat (limited to 'arch/arm/cpu/arm926ejs')
-rw-r--r-- | arch/arm/cpu/arm926ejs/nomadik/Kconfig | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm926ejs/nomadik/Kconfig b/arch/arm/cpu/arm926ejs/nomadik/Kconfig new file mode 100644 index 0000000..7177800 --- /dev/null +++ b/arch/arm/cpu/arm926ejs/nomadik/Kconfig @@ -0,0 +1,21 @@ +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 |