aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-03 11:22:15 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-04 00:36:27 +0200
commitf17789c4ff8faf0340946f8ba6c3b35c02e36cee (patch)
tree96ced49ff590b0c368413131c61b88e26298906c /src/vendorcode
parentea37a21acf22a3c63c265e127584b65722f145b5 (diff)
Don't unconditionally show ChromeOS options
Google ChromeOS specific options were shown in the main menu unconditionally, even on non-ChromeOS devices. Instead, hide these options unless CONFIG_CHROMEOS is set, and also put them in a separate menu. Change-Id: I75f533ed5046d6df4f7d959a0ca4c2441340ef2f Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/848 Reviewed-by: Martin Roth <martin@se-eng.com> Tested-by: build bot (Jenkins) Reviewed-by: Mathias Krause <minipli@googlemail.com>
Diffstat (limited to 'src/vendorcode')
-rw-r--r--src/vendorcode/google/chromeos/Kconfig5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig
index 207431d0ec..179bbb1f27 100644
--- a/src/vendorcode/google/chromeos/Kconfig
+++ b/src/vendorcode/google/chromeos/Kconfig
@@ -26,6 +26,9 @@ config CHROMEOS
the coreboot table. NOTE: Enabling this option on an unsupported
board will most likely break your build.
+menu "ChromeOS"
+ depends on CHROMEOS
+
config VBNV_OFFSET
hex
default 0x26
@@ -53,3 +56,5 @@ config CHROMEOS_RAMOOPS_RAM_SIZE
hex "Size of preserved RAM"
default 0x00100000
depends on CHROMEOS_RAMOOPS
+
+endmenu