diff options
author | Felix Singer <felixsinger@posteo.net> | 2023-05-08 19:45:54 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-09-21 22:34:34 +0000 |
commit | d7232b953fb6676c2de6cef0f6858e254c3de85f (patch) | |
tree | 440ed74703999e5db00ac35f3b5a5f9f9a2f4531 /src | |
parent | 4694b32511f2b0ecf732d640e0842fd17c44a660 (diff) |
mb/google/myst: 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: Ia4ed3491e6a32659b957285ab20ad47c9085083c
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75025
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/myst/Kconfig | 3 | ||||
-rw-r--r-- | src/mainboard/google/myst/Kconfig.name | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/mainboard/google/myst/Kconfig b/src/mainboard/google/myst/Kconfig index 0c7db6fd65..fbb3687ada 100644 --- a/src/mainboard/google/myst/Kconfig +++ b/src/mainboard/google/myst/Kconfig @@ -3,6 +3,9 @@ config BOARD_GOOGLE_BASEBOARD_MYST def_bool n +config BOARD_GOOGLE_MYST + select BOARD_GOOGLE_BASEBOARD_MYST + if BOARD_GOOGLE_BASEBOARD_MYST config BOARD_SPECIFIC_OPTIONS diff --git a/src/mainboard/google/myst/Kconfig.name b/src/mainboard/google/myst/Kconfig.name index ab0e71c6f5..eac81af44a 100644 --- a/src/mainboard/google/myst/Kconfig.name +++ b/src/mainboard/google/myst/Kconfig.name @@ -2,4 +2,3 @@ comment "Myst" config BOARD_GOOGLE_MYST bool "-> Myst" - select BOARD_GOOGLE_BASEBOARD_MYST |