diff options
author | Felix Singer <felixsinger@posteo.net> | 2023-05-08 19:48:39 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-09-23 21:06:45 +0000 |
commit | 173e73d061bd886b1fbb11873d5febbf93217dc3 (patch) | |
tree | 61f75689d8c546f76035624ecb21ac2573facc00 /src/mainboard/google | |
parent | 3c9b8f791423c43c96dc2d4f2f4e319414fbaba2 (diff) |
mb/google/veyron: 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: Id85503a5ec970ea92c07b99ec7048c521d85c79b
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75026
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/veyron/Kconfig | 20 | ||||
-rw-r--r-- | src/mainboard/google/veyron/Kconfig.name | 10 |
2 files changed, 20 insertions, 10 deletions
diff --git a/src/mainboard/google/veyron/Kconfig b/src/mainboard/google/veyron/Kconfig index dbd2b8733c..0e543e16e0 100644 --- a/src/mainboard/google/veyron/Kconfig +++ b/src/mainboard/google/veyron/Kconfig @@ -3,6 +3,26 @@ config BOARD_GOOGLE_VEYRON def_bool n +config BOARD_GOOGLE_VEYRON_JAQ + select BOARD_GOOGLE_VEYRON + select SYSTEM_TYPE_LAPTOP + +config BOARD_GOOGLE_VEYRON_JERRY + select BOARD_GOOGLE_VEYRON + select SYSTEM_TYPE_LAPTOP + +config BOARD_GOOGLE_VEYRON_MIGHTY + select BOARD_GOOGLE_VEYRON + select SYSTEM_TYPE_LAPTOP + +config BOARD_GOOGLE_VEYRON_MINNIE + select BOARD_GOOGLE_VEYRON + select SYSTEM_TYPE_LAPTOP + +config BOARD_GOOGLE_VEYRON_SPEEDY + select BOARD_GOOGLE_VEYRON + select SYSTEM_TYPE_LAPTOP + if BOARD_GOOGLE_VEYRON # Some Veyron boards incorrectly had their RAM code strapped with 100Kohm diff --git a/src/mainboard/google/veyron/Kconfig.name b/src/mainboard/google/veyron/Kconfig.name index bf734cc06d..a5c07901ae 100644 --- a/src/mainboard/google/veyron/Kconfig.name +++ b/src/mainboard/google/veyron/Kconfig.name @@ -2,25 +2,15 @@ comment "Veyron" config BOARD_GOOGLE_VEYRON_JAQ bool "-> Veyron_Jaq (Haier Chromebook 11)" - select BOARD_GOOGLE_VEYRON - select SYSTEM_TYPE_LAPTOP config BOARD_GOOGLE_VEYRON_JERRY bool "-> Veyron_Jerry (Hisense Chromebook 11)" - select BOARD_GOOGLE_VEYRON - select SYSTEM_TYPE_LAPTOP config BOARD_GOOGLE_VEYRON_MIGHTY bool "-> Veyron_Mighty (Haier Chromebook 11(edu))" - select BOARD_GOOGLE_VEYRON - select SYSTEM_TYPE_LAPTOP config BOARD_GOOGLE_VEYRON_MINNIE bool "-> Veyron_Minnie (ASUS Chromebook Flip C100)" - select BOARD_GOOGLE_VEYRON - select SYSTEM_TYPE_LAPTOP config BOARD_GOOGLE_VEYRON_SPEEDY bool "-> Veyron_Speedy (ASUS C201 Chromebook)" - select BOARD_GOOGLE_VEYRON - select SYSTEM_TYPE_LAPTOP |