diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-08-30 22:11:06 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-31 01:21:59 (GMT) |
commit | 22f2be7a122410862b68e4ceb901d677c1b5fee8 (patch) | |
tree | 6987b8b4b118c315bd02b79d4f60d3cdd34c0fb2 /arch/arm/cpu | |
parent | c338f09e965a300ddd78af73e86c4af4c9464ce4 (diff) | |
download | u-boot-fsl-qoriq-22f2be7a122410862b68e4ceb901d677c1b5fee8.tar.xz |
orion5x: kconfig: move board select menu and common settings
Becuase the board select menu in arch/arm/Kconfig is too big,
move the Orion5x board select menu to orion5x/Kconfig.
Move also common settings (CONFIG_SYS_CPU="arm926ejs" and
CONFIG_SYS_SOC="orion5x").
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/arm926ejs/orion5x/Kconfig | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm926ejs/orion5x/Kconfig b/arch/arm/cpu/arm926ejs/orion5x/Kconfig new file mode 100644 index 0000000..aa40099 --- /dev/null +++ b/arch/arm/cpu/arm926ejs/orion5x/Kconfig @@ -0,0 +1,21 @@ +if ORION5X + +choice + prompt "Marvell Orion board select" + +config TARGET_EDMINIV2 + bool "LaCie Ethernet Disk mini V2" + +endchoice + +config SYS_CPU + string + default "arm926ejs" + +config SYS_SOC + string + default "orion5x" + +source "board/LaCie/edminiv2/Kconfig" + +endif |