diff options
author | Felix Singer <felixsinger@posteo.net> | 2023-05-08 19:52:33 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-09-21 22:35:18 +0000 |
commit | 1020ea20109a067aa54d07a191d262d8ec78dbd7 (patch) | |
tree | 73e10b00b071d5987ac51eb53591df25e6f8e5bf /src | |
parent | 6a823bdc67cbb26fd44ccce3d1a33e05a0f15fb3 (diff) |
mb/google/geralt: 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: I590b7fb5f5f52cbf1a61c65f8fac757e36feac5e
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75028
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/geralt/Kconfig | 3 | ||||
-rw-r--r-- | src/mainboard/google/geralt/Kconfig.name | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/mainboard/google/geralt/Kconfig b/src/mainboard/google/geralt/Kconfig index e8e365df03..54c51d8a96 100644 --- a/src/mainboard/google/geralt/Kconfig +++ b/src/mainboard/google/geralt/Kconfig @@ -4,6 +4,9 @@ config BOARD_GOOGLE_GERALT_COMMON def_bool n +config BOARD_GOOGLE_GERALT + select BOARD_GOOGLE_GERALT_COMMON + if BOARD_GOOGLE_GERALT_COMMON config VBOOT diff --git a/src/mainboard/google/geralt/Kconfig.name b/src/mainboard/google/geralt/Kconfig.name index 6c52a61e8e..e699ac2467 100644 --- a/src/mainboard/google/geralt/Kconfig.name +++ b/src/mainboard/google/geralt/Kconfig.name @@ -2,4 +2,3 @@ comment "Geralt" config BOARD_GOOGLE_GERALT bool "-> Geralt" - select BOARD_GOOGLE_GERALT_COMMON |