arch: Make board selection choices optional
authorJoe Hershberger <joe.hershberger@ni.com>
Tue, 12 May 2015 19:46:23 +0000 (14:46 -0500)
committerTom Rini <trini@konsulko.com>
Tue, 12 May 2015 22:10:02 +0000 (18:10 -0400)
By making the board selections optional, every defconfig will include
the board selection when running savedefconfig so if a new board is
added to the top of the list of choices the former top's defconfig will
still be correct.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Cc: Tom Rini <trini@konsulko.com>
54 files changed:
arch/arc/Kconfig
arch/arm/Kconfig
arch/arm/cpu/armv7/exynos/Kconfig
arch/arm/cpu/armv7/mx5/Kconfig
arch/arm/cpu/armv7/mx6/Kconfig
arch/arm/cpu/armv7/omap3/Kconfig
arch/arm/cpu/armv7/omap4/Kconfig
arch/arm/cpu/armv7/omap5/Kconfig
arch/arm/cpu/armv7/rmobile/Kconfig
arch/arm/cpu/armv7/s5pc1xx/Kconfig
arch/arm/mach-at91/Kconfig
arch/arm/mach-bcm283x/Kconfig
arch/arm/mach-davinci/Kconfig
arch/arm/mach-integrator/Kconfig
arch/arm/mach-keystone/Kconfig
arch/arm/mach-kirkwood/Kconfig
arch/arm/mach-nomadik/Kconfig
arch/arm/mach-orion5x/Kconfig
arch/arm/mach-socfpga/Kconfig
arch/arm/mach-tegra/Kconfig
arch/arm/mach-tegra/tegra114/Kconfig
arch/arm/mach-tegra/tegra124/Kconfig
arch/arm/mach-tegra/tegra20/Kconfig
arch/arm/mach-tegra/tegra30/Kconfig
arch/arm/mach-uniphier/Kconfig
arch/arm/mach-zynq/Kconfig
arch/avr32/Kconfig
arch/blackfin/Kconfig
arch/m68k/Kconfig
arch/microblaze/Kconfig
arch/mips/Kconfig
arch/nds32/Kconfig
arch/nios2/Kconfig
arch/openrisc/Kconfig
arch/powerpc/Kconfig
arch/powerpc/cpu/mpc512x/Kconfig
arch/powerpc/cpu/mpc5xx/Kconfig
arch/powerpc/cpu/mpc5xxx/Kconfig
arch/powerpc/cpu/mpc8260/Kconfig
arch/powerpc/cpu/mpc83xx/Kconfig
arch/powerpc/cpu/mpc85xx/Kconfig
arch/powerpc/cpu/mpc86xx/Kconfig
arch/powerpc/cpu/mpc8xx/Kconfig
arch/powerpc/cpu/ppc4xx/Kconfig
arch/sh/Kconfig
arch/sparc/Kconfig
board/amcc/canyonlands/Kconfig
board/coreboot/Kconfig
board/dbau1x00/Kconfig
board/google/Kconfig
board/intel/Kconfig
board/micronas/vct/Kconfig
board/seco/Kconfig
board/sunxi/Kconfig

index c044ad4..85fddd2 100644 (file)
@@ -132,6 +132,7 @@ config ARC_CACHE_LINE_SHIFT
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_DUMMY
        bool "Dummy target"
index cee3126..1c7cf7f 100644 (file)
@@ -64,6 +64,7 @@ config SEMIHOSTING
 
 choice
        prompt "Target select"
+       optional
 
 config ARCH_AT91
        bool "Atmel AT91"
index f6084ac..c614425 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_EXYNOS
 
 choice
        prompt "EXYNOS board select"
+       optional
 
 config TARGET_SMDKV310
        select SUPPORT_SPL
index 2d6c0ce..9f250c6 100644 (file)
@@ -12,6 +12,7 @@ config MX53
 
 choice
        prompt "MX5 board select"
+       optional
 
 config TARGET_USBARMORY
        bool "Support USB armory"
index 076ba52..1282be3 100644 (file)
@@ -27,6 +27,7 @@ config MX6SX
 
 choice
        prompt "MX6 board select"
+       optional
 
 config TARGET_SECOMX6
        bool "Support secomx6 boards"
index cc82c50..b32a6b0 100644 (file)
@@ -2,6 +2,7 @@ if OMAP34XX
 
 choice
        prompt "OMAP3 board select"
+       optional
 
 config TARGET_AM3517_EVM
        bool "AM3517 EVM"
index eccf897..df27ea1 100644 (file)
@@ -2,6 +2,7 @@ if OMAP44XX
 
 choice
        prompt "OMAP4 board select"
+       optional
 
 config TARGET_DUOVERO
        bool "OMAP4430 Gumstix Duovero"
index aca862d..20c3bd9 100644 (file)
@@ -2,6 +2,7 @@ if OMAP54XX
 
 choice
        prompt "OMAP5 board select"
+       optional
 
 config TARGET_CM_T54
        bool "CompuLab CM-T54"
index 57dccec..ae23078 100644 (file)
@@ -2,6 +2,7 @@ if RMOBILE
 
 choice
        prompt "Renesus ARM SoCs board select"
+       optional
 
 config TARGET_ARMADILLO_800EVA
        bool "armadillo 800 eva board"
index bc73813..04acdaa 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_S5PC1XX
 
 choice
        prompt "S5PC1XX board select"
+       optional
 
 config TARGET_S5P_GONI
        bool "S5P Goni board"
index b660a5b..7dfa520 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_AT91
 
 choice
        prompt "Atmel AT91 board select"
+       optional
 
 config TARGET_AT91RM9200EK
        bool "Atmel AT91RM9200 evaluation kit"
index c740180..99779df 100644 (file)
@@ -3,6 +3,7 @@ menu "Broadcom BCM283X family"
 
 choice
        prompt "Broadcom BCM283X board select"
+       optional
 
 config TARGET_RPI
        bool "Raspberry Pi"
index 3ef55d3..e6cb390 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_DAVINCI
 
 choice
        prompt "DaVinci board select"
+       optional
 
 config TARGET_ENBW_CMC
        bool "EnBW CMC board"
index 8ffc544..c54d69d 100644 (file)
@@ -3,6 +3,7 @@ menu "Integrator Options"
 
 choice
        prompt "Integrator platform select"
+       optional
 
 config ARCH_INTEGRATOR_AP
        bool "Support Integrator/AP platform"
@@ -18,6 +19,7 @@ config ARCH_CINTEGRATOR
 
 choice
        prompt "Integrator core module select"
+       optional
 
 config CM720T
        bool "Core Module for ARM720T"
index 134ae87..67f1a33 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_KEYSTONE
 
 choice
        prompt "TI Keystone board select"
+       optional
 
 config TARGET_K2HK_EVM
        bool "TI Keystone 2 Kepler/Hawking EVM"
index 45c6687..1261885 100644 (file)
@@ -2,6 +2,7 @@ if KIRKWOOD
 
 choice
        prompt "Marvell Kirkwood board select"
+       optional
 
 config TARGET_OPENRD
        bool "Marvell OpenRD Board"
index 265f336..ba72a41 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_NOMADIK
 
 choice
        prompt "Nomadik board select"
+       optional
 
 config NOMADIK_NHK8815
        bool "ST 8815 Nomadik Hardware Kit"
index 291c511..7644b8d 100644 (file)
@@ -2,6 +2,7 @@ if ORION5X
 
 choice
        prompt "Marvell Orion board select"
+       optional
 
 config TARGET_EDMINIV2
        bool "LaCie Ethernet Disk mini V2"
index 204efca..e46c348 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_SOCFPGA
 
 choice
        prompt "Altera SOCFPGA board select"
+       optional
 
 config TARGET_SOCFPGA_ARRIA5
        bool "Altera SOCFPGA Arria V"
index 8bab594..9b42871 100644 (file)
@@ -2,6 +2,7 @@ if TEGRA
 
 choice
        prompt "Tegra SoC select"
+       optional
 
 config TEGRA20
        bool "Tegra20 family"
index 31012bc..1047b92 100644 (file)
@@ -2,6 +2,7 @@ if TEGRA114
 
 choice
        prompt "Tegra114 board select"
+       optional
 
 config TARGET_DALMORE
        bool "NVIDIA Tegra114 Dalmore evaluation board"
index 88f627c..36bb636 100644 (file)
@@ -2,6 +2,7 @@ if TEGRA124
 
 choice
        prompt "Tegra124 board select"
+       optional
 
 config TARGET_JETSON_TK1
        bool "NVIDIA Tegra124 Jetson TK1 board"
index 7f09f81..1bb8dff 100644 (file)
@@ -2,6 +2,7 @@ if TEGRA20
 
 choice
        prompt "Tegra20 board select"
+       optional
 
 config TARGET_HARMONY
        bool "NVIDIA Tegra20 Harmony evaluation board"
index 3abdc7b..e78331e 100644 (file)
@@ -2,6 +2,7 @@ if TEGRA30
 
 choice
        prompt "Tegra30 board select"
+       optional
 
 config TARGET_APALIS_T30
        bool "Toradex Apalis T30 board"
index 288e6ab..2d27c49 100644 (file)
@@ -9,6 +9,7 @@ config UNIPHIER_SMP
 
 choice
        prompt "UniPhier SoC select"
+       optional
 
 config MACH_PH1_PRO4
        bool "PH1-Pro4"
index 1046ece..483c3a0 100644 (file)
@@ -2,6 +2,7 @@ if ARCH_ZYNQ
 
 choice
        prompt "Xilinx Zynq board select"
+       optional
 
 config TARGET_ZYNQ_ZED
        bool "Zynq ZedBoard"
index 66de2ad..c69654c 100644 (file)
@@ -6,6 +6,7 @@ config SYS_ARCH
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_ATNGW100
        bool "Support atngw100"
index 31913fe..0a2fb4d 100644 (file)
@@ -6,6 +6,7 @@ config SYS_ARCH
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_BCT_BRETTL2
        bool "Support bct-brettl2"
index 69cb0f7..26509b7 100644 (file)
@@ -114,6 +114,7 @@ config M548x
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_M52277EVB
        bool "Support M52277EVB"
index 6f419f0..077b2a7 100644 (file)
@@ -6,6 +6,7 @@ config SYS_ARCH
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_MICROBLAZE_GENERIC
        bool "Support microblaze-generic"
index b0a8a43..feb2f68 100644 (file)
@@ -13,6 +13,7 @@ config USE_PRIVATE_LIBGCC
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_QEMU_MIPS
        bool "Support qemu-mips"
index 81b0a01..98b0282 100644 (file)
@@ -6,6 +6,7 @@ config SYS_ARCH
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_ADP_AG101
        bool "Support adp-ag101"
index b3be7b5..8ae7f6e 100644 (file)
@@ -6,6 +6,7 @@ config SYS_ARCH
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_NIOS2_GENERIC
        bool "Support nios2-generic"
index 4d62b4c..11014d1 100644 (file)
@@ -6,6 +6,7 @@ config SYS_ARCH
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_OPENRISC_GENERIC
        bool "Support openrisc-generic"
index 8e5a3e2..3b3f446 100644 (file)
@@ -6,6 +6,7 @@ config SYS_ARCH
 
 choice
        prompt "CPU select"
+       optional
 
 config MPC512X
        bool "MPC512X"
index a0f0ede..53450ae 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_PDM360NG
        bool "Support pdm360ng"
index aad4a7c..5275447 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_CMI_MPC5XX
        bool "Support cmi_mpc5xx"
index eec9d7d..5d49228 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_A3M071
        bool "Support a3m071"
index 55941c8..e93732d 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_KM82XX
        bool "Support km82xx"
index 88a3bd6..3fb901f 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_MPC8308_P1M
        bool "Support mpc8308_p1m"
index aff5fdb..3e8d0b1 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_SBC8548
        bool "Support sbc8548"
index 14e8b1a..fe1859d 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_SBC8641D
        bool "Support sbc8641d"
index e8bcbe9..79cee35 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_TQM823L
        bool "Support TQM823L"
index 4d5954a..10b86e0 100644 (file)
@@ -6,6 +6,7 @@ config SYS_CPU
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_CSB272
        bool "Support csb272"
index 2128f23..2f7a2fe 100644 (file)
@@ -29,6 +29,7 @@ config SH_32BIT
 
 choice
        prompt "Target select"
+       optional
 
 config TARGET_RSK7203
        bool "RSK+ 7203"
index 2df09b2..04dc08f 100644 (file)
@@ -14,6 +14,7 @@ config LEON3
 
 choice
        prompt "Board select"
+       optional
 
 config TARGET_GRSIM_LEON2
        bool "GRSIM simulating a LEON2 board"
index ef66ad4..a655dbc 100644 (file)
@@ -11,6 +11,7 @@ config SYS_CONFIG_NAME
 
 choice BOARD_TYPE
        prompt "Select which board to build for"
+       optional
 
 config CANYONLANDS
        bool "Glacier"
index dc9b70f..ede6065 100644 (file)
@@ -8,6 +8,7 @@ if VENDOR_COREBOOT
 
 choice
        prompt "Mainboard model"
+       optional
 
 config TARGET_COREBOOT
        bool "coreboot"
index 1286e45..b813adb 100644 (file)
@@ -13,6 +13,7 @@ menu "dbau1x00 board options"
 
 choice
        prompt "Select au1x00 SoC type"
+       optional
 
 config DBAU1100
        bool "Select AU1100"
index 302f68e..e9559c9 100644 (file)
@@ -8,6 +8,7 @@ if VENDOR_GOOGLE
 
 choice
        prompt "Mainboard model"
+       optional
 
 config TARGET_CHROMEBOOK_LINK
        bool "Chromebook link"
index 7fe21b9..3d9ecf0 100644 (file)
@@ -8,6 +8,7 @@ if VENDOR_INTEL
 
 choice
        prompt "Mainboard model"
+       optional
 
 config TARGET_CROWNBAY
        bool "Crown Bay"
index 288a1ae..c518079 100644 (file)
@@ -13,6 +13,7 @@ menu "vct board options"
 
 choice
        prompt "Board variant"
+       optional
 
 config VCT_PLATINUM
        bool "Enable VCT_PLATINUM"
index dcb1ac8..af16697 100644 (file)
@@ -2,6 +2,7 @@ if TARGET_SECOMX6
 
 choice
        prompt "SECO i.MX6 Board variant"
+       optional
 
 config SECOMX6_Q7
        bool "Q7"
@@ -16,6 +17,7 @@ endchoice
 
 choice
        prompt "SECO i.MX6 SoC variant"
+       optional
 
 config SECOMX6Q
        bool "i.MX6Q"
index a60d028..c60c81d 100644 (file)
@@ -18,6 +18,7 @@ config SUNXI_GEN_SUN6I
 
 choice
        prompt "Sunxi SoC Variant"
+       optional
 
 config MACH_SUN4I
        bool "sun4i (Allwinner A10)"