Alexander Couzens has uploaded this change for review. ( https://review.coreboot.org/21238
Change subject: Kconfig: move Mainboard selection to the top level ......................................................................
Kconfig: move Mainboard selection to the top level
Choosing the mainboard vendor and board is the most important settings. It should be choosen as the first thing before configuring anything else.
Change-Id: Ic21abc69a3430475c232d8050626d6bca98c5514 Signed-off-by: Alexander Couzens lynxis@fe80.eu --- M src/Kconfig M src/mainboard/Kconfig 2 files changed, 8 insertions(+), 8 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/21238/1
diff --git a/src/Kconfig b/src/Kconfig index 4dd1ded..91dea2a 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -16,6 +16,14 @@
mainmenu "coreboot configuration"
+source "src/mainboard/Kconfig" + +menu "Mainboard" + +source "src/mainboard/Kconfig.mainboard" + +endmenu + menu "General setup"
config COREBOOT_BUILD @@ -266,12 +274,6 @@ help The path and filename of the file to use as graphical bootsplash screen. The file format has to be jpg. - -endmenu - -menu "Mainboard" - -source "src/mainboard/Kconfig"
endmenu
diff --git a/src/mainboard/Kconfig b/src/mainboard/Kconfig index 7367367..8d4e0d1 100644 --- a/src/mainboard/Kconfig +++ b/src/mainboard/Kconfig @@ -9,5 +9,3 @@ endchoice
source "src/mainboard/*/Kconfig" - -source "src/mainboard/Kconfig.mainboard"