From f17789c4ff8faf0340946f8ba6c3b35c02e36cee Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 3 Apr 2012 11:22:15 -0700 Subject: [PATCH] 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 Reviewed-on: http://review.coreboot.org/848 Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) Reviewed-by: Mathias Krause --- src/vendorcode/google/chromeos/Kconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig index 207431d0e..179bbb1f2 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 -- 2.25.1