[coreboot-gerrit] New patch to review for coreboot: src/Kconfig: Move acpi Kconfig below chipset Kconfigs

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Tue May 17 19:28:45 CEST 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14878

-gerrit

commit a5e521887b21d9d457e1c15c7c8568672c043515
Author: Martin Roth <martinroth at google.com>
Date:   Tue May 17 11:28:23 2016 -0600

    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.
    
    Change-Id: I0b100f5535c5f383e8c6db74d0024c5ff2e8c08d
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 src/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Kconfig b/src/Kconfig
index a11a2da..f93c2cc 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



More information about the coreboot-gerrit mailing list