[coreboot-gerrit] Patch set updated for coreboot: ee16d0d Fix dependency issue in Chrome OS vendor code

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Fri Apr 10 09:08:24 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9301

-gerrit

commit ee16d0d0792a3a657ce35b53683da058fece33c7
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Sat Apr 4 03:05:17 2015 +0200

    Fix dependency issue in Chrome OS vendor code
    
    make *config was complaining about mainboards selecting a virtual
    dev switch when CONFIG_CHROMEOS is not enabled.
    
    While the long term cleanup should be to move the option out of
    CONFIG_CHROMEOS and make it not be a user changeable option, this
    approach is contained to vendorcode/ and gets rid of the warning.
    
    Change-Id: Id090eb31d1307af7a0d1f9fbe641534dc24b24a9
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 src/vendorcode/google/chromeos/Kconfig | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig
index 8826a14..4576ce7 100644
--- a/src/vendorcode/google/chromeos/Kconfig
+++ b/src/vendorcode/google/chromeos/Kconfig
@@ -197,4 +197,12 @@ config NO_TPM_RESUME
 	  is sent during an S3 resume.
 
 endif
+if !CHROMEOS
+config VIRTUAL_DEV_SWITCH
+	bool
+	default n
+	depends on MAINBOARD_HAS_CHROMEOS
+	help
+	  Whether this platform has a virtual developer switch.
+endif
 endmenu



More information about the coreboot-gerrit mailing list