diff options
author | Vineet Gupta | 2013-01-18 10:42:25 +0100 |
---|---|---|
committer | Vineet Gupta | 2013-02-15 18:46:12 +0100 |
commit | 53d98958f585517f362733a1dbdb69e2dc5153a3 (patch) | |
tree | 58f7a5754853da864feed40cedff7bc46e906782 /arch/arc/Kconfig | |
parent | ARC: Add support for ioremap_prot API (diff) | |
download | kernel-qcow2-linux-53d98958f585517f362733a1dbdb69e2dc5153a3.tar.gz kernel-qcow2-linux-53d98958f585517f362733a1dbdb69e2dc5153a3.tar.xz kernel-qcow2-linux-53d98958f585517f362733a1dbdb69e2dc5153a3.zip |
ARC: [Review] Multi-platform image #1: Kconfig enablement
This mini patchseries addresses the lack of multi-platform-image support
in ARC port.
Older build system only supported one platform(soc) to build at a time
and further only one board of that platform could be built. There was no
technical reason for that - we just didn't have the need.
So the first step towards multi-platform (and multi-board) builds it to
allow build system to do that.
So as applicable, <choice .. endchoice> => <menu .. endmenu>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arc/Kconfig')
-rw-r--r-- | arch/arc/Kconfig | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig index 2dab40dd8161..3fdd6a53e5d6 100644 --- a/arch/arc/Kconfig +++ b/arch/arc/Kconfig @@ -82,9 +82,7 @@ source "kernel/Kconfig.freezer" menu "ARC Architecture Configuration" -choice - prompt "ARC Platform" - default ARC_PLAT_FPGA_LEGACY +menu "ARC Platform/SoC" config ARC_PLAT_FPGA_LEGACY bool "\"Legacy\" ARC FPGA dev platform" @@ -96,7 +94,7 @@ config ARC_PLAT_FPGA_LEGACY - MetaWare ISS #New platform adds here -endchoice +endmenu menu "ARC CPU Configuration" |