diff options
author | Martin Roth <martinroth@google.com> | 2018-05-02 21:44:57 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-05-04 01:03:49 +0000 |
commit | 59114579a24c3371b98f3205fd668e3a0257ab34 (patch) | |
tree | 9b536566cab57417c5eb84d4863a79ed692eddb4 /src/mainboard/google/beltino | |
parent | 2a8cc536206402d263c19dcecf95f7a992c2119b (diff) |
mainboard/google: Comment variant names in Kconfig
It's very confusing trying to find the google platform names, because
they seem all unsorted in Kconfig. They're actually sorted according
to the variant name, but previously, that was impossible to tell.
- Add a comment to the top of variants in Kconfig.name
- Inset each variant name. If you start a prompt with whitespace,
it gets ignored, so after trying various ways to indent, the arrow
was the option I thought looked the best.
It now looks like this:
*** Beltino ***
-> Mccloud (Acer Chromebox CXI)
-> Monroe (LG Chromebase 22CV241 & 22CB25S)
-> Panther (ASUS Chromebox CN60)
-> Tricky (Dell Chromebox 3010)
-> Zako (HP Chromebox G1)
Butterfly (HP Pavilion Chromebook 14)
Chell (HP Chromebook 13 G1)
Cheza
*** Cyan ***
Change-Id: I35cb16b040651cd1bd0c4aef98494368ef5ca512
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/26020
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/google/beltino')
-rw-r--r-- | src/mainboard/google/beltino/Kconfig.name | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mainboard/google/beltino/Kconfig.name b/src/mainboard/google/beltino/Kconfig.name index f7348c6219..f75f4289ba 100644 --- a/src/mainboard/google/beltino/Kconfig.name +++ b/src/mainboard/google/beltino/Kconfig.name @@ -1,19 +1,21 @@ +comment "Beltino" + config BOARD_GOOGLE_MCCLOUD - bool "Mccloud (Acer Chromebox CXI)" + bool "-> Mccloud (Acer Chromebox CXI)" select BOARD_GOOGLE_BASEBOARD_BELTINO config BOARD_GOOGLE_MONROE - bool "Monroe (LG Chromebase 22CV241 & 22CB25S)" + bool "-> Monroe (LG Chromebase 22CV241 & 22CB25S)" select BOARD_GOOGLE_BASEBOARD_BELTINO config BOARD_GOOGLE_PANTHER - bool "Panther (ASUS Chromebox CN60)" + bool "-> Panther (ASUS Chromebox CN60)" select BOARD_GOOGLE_BASEBOARD_BELTINO config BOARD_GOOGLE_TRICKY - bool "Tricky (Dell Chromebox 3010)" + bool "-> Tricky (Dell Chromebox 3010)" select BOARD_GOOGLE_BASEBOARD_BELTINO config BOARD_GOOGLE_ZAKO - bool "Zako (HP Chromebox G1)" + bool "-> Zako (HP Chromebox G1)" select BOARD_GOOGLE_BASEBOARD_BELTINO |