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:
parent
fe3b3e05da
commit
c7759d1cf9
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue