From a48ca841a2f2a24d53cc47d54453d60d15cbfadc Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sat, 4 Apr 2015 01:58:28 +0200 Subject: 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 Reviewed-on: http://review.coreboot.org/9298 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/Kconfig | 55 ++++++++++++++----------------------------------------- 1 file changed, 14 insertions(+), 41 deletions(-) (limited to 'src/Kconfig') 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 -- cgit v1.2.3