From 59a16a9cea9747a6183dbf0609274ed2b3a111bf Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 17 May 2016 11:28:23 -0600 Subject: [PATCH] UPSTREAM: src/Kconfig: Move acpi Kconfig below chipset Kconfigs The src/acpi/Kconfig was being sourced close to the top of the Kconfig tree, which doesn't allow it to be overridden by mainboards or chipsets. Moving it lower in the tree allows for the defaults to be overridden. BUG=None BRANCH=None TEST=None Change-Id: I0b100f5535c5f383e8c6db74d0024c5ff2e8c08d Original-Signed-off-by: Martin Roth Original-Reviewed-on: https://review.coreboot.org/14878 Original-Reviewed-by: Aaron Durbin Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Alexander Couzens Original-Reviewed-by: Paul Menzel Signed-off-by: Aaron Durbin Reviewed-on: https://chromium-review.googlesource.com/346985 Commit-Ready: Martin Roth Tested-by: Martin Roth Reviewed-by: Martin Roth --- src/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Kconfig b/src/Kconfig index a11a2da833..f93c2cc23d 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -379,8 +379,6 @@ config BOOTSPLASH_FILE endmenu -source "src/acpi/Kconfig" - menu "Mainboard" source "src/mainboard/Kconfig" @@ -455,6 +453,8 @@ source "src/drivers/*/Kconfig" source "src/drivers/*/*/Kconfig" endmenu +source "src/acpi/Kconfig" + config RTC bool default n