Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60352 )
Change subject: mb/google/slippy: Move selects from Kconfig.name to Kconfig ......................................................................
mb/google/slippy: Move selects from Kconfig.name to Kconfig
Move selects from Kconfig.name to Kconfig so that the configuration is at one place and not distributed over two files.
Change-Id: I677770168caa95d95fd7d32cadc15ffae8455e8c Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/60352 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/mainboard/google/slippy/Kconfig M src/mainboard/google/slippy/Kconfig.name 2 files changed, 12 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Kyösti Mälkki: Looks good to me, approved
diff --git a/src/mainboard/google/slippy/Kconfig b/src/mainboard/google/slippy/Kconfig index 866038c..12d0c26 100644 --- a/src/mainboard/google/slippy/Kconfig +++ b/src/mainboard/google/slippy/Kconfig @@ -19,6 +19,18 @@ select SOUTHBRIDGE_INTEL_LYNXPOINT select SYSTEM_TYPE_LAPTOP
+config BOARD_GOOGLE_FALCO + select BOARD_GOOGLE_BASEBOARD_SLIPPY + +config BOARD_GOOGLE_LEON + select BOARD_GOOGLE_BASEBOARD_SLIPPY + +config BOARD_GOOGLE_PEPPY + select BOARD_GOOGLE_BASEBOARD_SLIPPY + +config BOARD_GOOGLE_WOLF + select BOARD_GOOGLE_BASEBOARD_SLIPPY + if BOARD_GOOGLE_BASEBOARD_SLIPPY
config VBOOT diff --git a/src/mainboard/google/slippy/Kconfig.name b/src/mainboard/google/slippy/Kconfig.name index e81d056..3e0f81e 100644 --- a/src/mainboard/google/slippy/Kconfig.name +++ b/src/mainboard/google/slippy/Kconfig.name @@ -2,16 +2,12 @@
config BOARD_GOOGLE_FALCO bool "-> Falco (HP Chromebook 14)" - select BOARD_GOOGLE_BASEBOARD_SLIPPY
config BOARD_GOOGLE_LEON bool "-> Leon (Toshiba Chromebook)" - select BOARD_GOOGLE_BASEBOARD_SLIPPY
config BOARD_GOOGLE_PEPPY bool "-> Peppy (Acer C720/C720P Chromebook)" - select BOARD_GOOGLE_BASEBOARD_SLIPPY
config BOARD_GOOGLE_WOLF bool "-> Wolf (Dell Chromebook 11)" - select BOARD_GOOGLE_BASEBOARD_SLIPPY
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.