diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-04-04 01:58:28 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-04-07 17:40:28 +0200 |
commit | a48ca841a2f2a24d53cc47d54453d60d15cbfadc (patch) | |
tree | ba0e44280eac0dc1ae546922251720e26c500791 /src/Kconfig | |
parent | f34ea5f6609c23db33b6a6b7c31c67c6214efae4 (diff) |
kconfig: drop intermittend forwarder files
With kconfig understanding wildcards, we don't need
Kconfig files that just include other Kconfig files
anymore.
Change-Id: I7584e675f78fcb4ff1fdb0731e340533c5bc040d
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/9298
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 55 |
1 files changed, 14 insertions, 41 deletions
diff --git a/src/Kconfig b/src/Kconfig index aa4d6eebeb..cc87aec95a 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -255,39 +255,11 @@ config UPDATE_IMAGE endmenu -source src/mainboard/Kconfig +source "src/mainboard/Kconfig" -# This option is used to set the architecture of a mainboard to X86. -# It is usually set in mainboard/*/Kconfig. -config ARCH_X86 - bool - default n - select PCI - -config ARCH_ARM - bool - default n - -config ARCH_ARM64 - bool - default n - -config ARCH_RISCV - bool - default n - select ANY_TOOLCHAIN - -config ARCH_MIPS - bool - default n - -source src/arch/x86/Kconfig -source src/arch/arm/Kconfig -source src/arch/arm64/Kconfig -source src/arch/riscv/Kconfig -source src/arch/mips/Kconfig +source "src/arch/*/Kconfig" -source src/vendorcode/Kconfig +source "src/vendorcode/*/Kconfig" config SYSTEM_TYPE_LAPTOP default n @@ -296,18 +268,19 @@ config SYSTEM_TYPE_LAPTOP menu "Chipset" comment "CPU" -source src/cpu/Kconfig +source "src/cpu/Kconfig" comment "Northbridge" -source src/northbridge/Kconfig +source "src/northbridge/*/*/Kconfig" comment "Southbridge" -source src/southbridge/Kconfig +source "src/southbridge/*/*/Kconfig" comment "Super I/O" -source src/superio/Kconfig +source "src/superio/*/Kconfig" comment "Embedded Controllers" -source src/ec/Kconfig +source "src/ec/acpi/Kconfig" +source "src/ec/*/*/Kconfig" comment "SoC" -source src/soc/Kconfig -source src/drivers/intel/fsp/Kconfig +source "src/soc/*/*/Kconfig" +source "src/drivers/intel/fsp/Kconfig" endmenu @@ -319,10 +292,10 @@ config MAINBOARD_HAS_BOOTBLOCK_INIT bool default n -source src/device/Kconfig +source "src/device/Kconfig" menu "Generic Drivers" -source src/drivers/Kconfig +source "src/drivers/*/Kconfig" endmenu config TPM @@ -365,7 +338,7 @@ config BOOTMODE_STRAPS bool default n -source src/console/Kconfig +source "src/console/Kconfig" config HAVE_ACPI_RESUME bool |