[coreboot] New patch to review for coreboot: d772e72 Add Google ChromeOS vendorcode directory

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Fri Mar 30 01:09:17 CEST 2012


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

-gerrit

commit d772e7213897a92b2bc649e5c5331de022036438
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Fri Mar 30 01:01:51 2012 +0200

    Add Google ChromeOS vendorcode directory
    
    ... and hook it up in Kconfig. More code to come.
    
    Change-Id: I24542d8ef97e2bce112c3aface681ceeb1a7c061
    Signed-off-by: Stefan Reinauer <reinauer at google.com>
---
 src/Kconfig                            |    1 +
 src/vendorcode/Kconfig                 |    1 +
 src/vendorcode/google/Kconfig          |   20 ++++++++++++++++++++
 src/vendorcode/google/chromeos/Kconfig |   28 ++++++++++++++++++++++++++++
 4 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/src/Kconfig b/src/Kconfig
index 74fd015..ba1af08 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -938,3 +938,4 @@ config POWER_BUTTON_IS_OPTIONAL
 	  Internal option that controls ENABLE_POWER_BUTTON visibility.
 
 source src/Kconfig.deprecated_options
+source src/vendorcode/Kconfig
diff --git a/src/vendorcode/Kconfig b/src/vendorcode/Kconfig
new file mode 100644
index 0000000..18a2068
--- /dev/null
+++ b/src/vendorcode/Kconfig
@@ -0,0 +1 @@
+source src/vendorcode/google/Kconfig
diff --git a/src/vendorcode/google/Kconfig b/src/vendorcode/google/Kconfig
new file mode 100644
index 0000000..567d5a9
--- /dev/null
+++ b/src/vendorcode/google/Kconfig
@@ -0,0 +1,20 @@
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2011 The ChromiumOS Authors.  All rights reserved.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; version 2 of the License.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+##
+
+source src/vendorcode/google/chromeos/Kconfig
+
diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig
new file mode 100644
index 0000000..f838b74
--- /dev/null
+++ b/src/vendorcode/google/chromeos/Kconfig
@@ -0,0 +1,28 @@
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2011 The ChromiumOS Authors.  All rights reserved.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; version 2 of the License.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+##
+
+config CHROMEOS
+	bool
+	default n
+	select TPM
+	select CACHE_ROM
+	help
+	  Enable ChromeOS specific features
+
+
+




More information about the coreboot mailing list