Stefan Reinauer ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/848
-gerrit commit 68e275572a3242d611c306a501a9bf22f974c424 Author: Stefan Reinauer <[email protected]> Date: Tue Apr 3 11:22:15 2012 -0700 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 <[email protected]> --- src/vendorcode/google/chromeos/Kconfig | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig index 207431d..14cb333 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 -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

