mb/google/cherry: Move selects from Kconfig.name to Kconfig

Selects should be done in the Kconfig file instead of Kconfig.name and
not mixed over both files.

Change-Id: Id1b0d375670f9e59047eff737bc17e61bf93175e
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75016
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Singer 2023-05-08 19:28:10 +02:00 committed by Felix Singer
parent fe3b3e05da
commit c7759d1cf9
2 changed files with 9 additions and 3 deletions

View File

@ -4,6 +4,15 @@
config BOARD_GOOGLE_CHERRY_COMMON
def_bool n
config BOARD_GOOGLE_CHERRY
select BOARD_GOOGLE_CHERRY_COMMON
config BOARD_GOOGLE_DOJO
select BOARD_GOOGLE_CHERRY_COMMON
config BOARD_GOOGLE_TOMATO
select BOARD_GOOGLE_CHERRY_COMMON
if BOARD_GOOGLE_CHERRY_COMMON
config VBOOT

View File

@ -2,12 +2,9 @@ comment "Cherry"
config BOARD_GOOGLE_CHERRY
bool "-> Cherry"
select BOARD_GOOGLE_CHERRY_COMMON
config BOARD_GOOGLE_DOJO
bool "-> Dojo"
select BOARD_GOOGLE_CHERRY_COMMON
config BOARD_GOOGLE_TOMATO
bool "-> Tomato"
select BOARD_GOOGLE_CHERRY_COMMON