diff options
author | Julius Werner <jwerner@chromium.org> | 2020-09-09 15:04:21 -0700 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2020-10-17 00:29:17 +0000 |
commit | 46a8cbd92d16f3365cd3a8c3b7ac4c24cebf5121 (patch) | |
tree | 3b76293794789000296024e6a03efd2033886ac3 /src/mainboard | |
parent | 90df9166834f26a7600d089bc2fade0f34fd6681 (diff) | |
download | coreboot-46a8cbd92d16f3365cd3a8c3b7ac4c24cebf5121.tar.xz |
trogdor/sc7180: Clarify USE_QC_BLOBS requirements
This patch adds some Kconfig hints to make it clearer that the
USE_QC_BLOBS option is required for SC7180 boards and guide the user in
the right direction through menuconfig. Also add those little arrows to
the Trogdor board options that are there on most other boards.
Signed-off-by: Julius Werner <jwerner@chromium.org>
Change-Id: I973cae8026a229408a1a1817c4808b0266387ea7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45214
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philip Chen <philipchen@google.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/trogdor/Kconfig.name | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/mainboard/google/trogdor/Kconfig.name b/src/mainboard/google/trogdor/Kconfig.name index ea1230716a..174c795d87 100644 --- a/src/mainboard/google/trogdor/Kconfig.name +++ b/src/mainboard/google/trogdor/Kconfig.name @@ -1,21 +1,28 @@ comment "Trogdor" +if USE_QC_BLOBS + config BOARD_GOOGLE_BUBS - bool "Bubs" + bool "-> Bubs" select BOARD_GOOGLE_TROGDOR_COMMON config BOARD_GOOGLE_COACHZ - bool "Coachz" + bool "-> Coachz" select BOARD_GOOGLE_TROGDOR_COMMON config BOARD_GOOGLE_LAZOR - bool "Lazor" + bool "-> Lazor" select BOARD_GOOGLE_TROGDOR_COMMON config BOARD_GOOGLE_POMPOM - bool "Pompom" + bool "-> Pompom" select BOARD_GOOGLE_TROGDOR_COMMON config BOARD_GOOGLE_TROGDOR - bool "Trogdor" + bool "-> Trogdor" select BOARD_GOOGLE_TROGDOR_COMMON + +endif + +comment "(Trogdor requires 'Allow QC blobs repository')" + depends on !USE_QC_BLOBS |