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@google.com> Reviewed-on: https://review.coreboot.org/14878 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
79091db72b
commit
09210a1487
|
@ -379,8 +379,6 @@ config BOOTSPLASH_FILE
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
source "src/acpi/Kconfig"
|
|
||||||
|
|
||||||
menu "Mainboard"
|
menu "Mainboard"
|
||||||
|
|
||||||
source "src/mainboard/Kconfig"
|
source "src/mainboard/Kconfig"
|
||||||
|
@ -455,6 +453,8 @@ source "src/drivers/*/Kconfig"
|
||||||
source "src/drivers/*/*/Kconfig"
|
source "src/drivers/*/*/Kconfig"
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
source "src/acpi/Kconfig"
|
||||||
|
|
||||||
config RTC
|
config RTC
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
Loading…
Reference in New Issue