Vladimir Serbinenko (phcoder(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10330
-gerrit
commit d56965578350bcdc9c534ab22ef7db1f50a764d8
Author: Vladimir Serbinenko <phcoder(a)gmail.com>
Date: Wed May 27 09:57:35 2015 +0200
h8: Add missing include of types.h
h8.h uses u8 without including types.h.
Change-Id: I7e46f6b8ca92ed23af93597fe2f08add464eb176
Signed-off-by: Vladimir Serbinenko <phcoder(a)gmail.com>
---
src/ec/lenovo/h8/h8.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/ec/lenovo/h8/h8.h b/src/ec/lenovo/h8/h8.h
index ab56b7d..33139dc 100644
--- a/src/ec/lenovo/h8/h8.h
+++ b/src/ec/lenovo/h8/h8.h
@@ -20,6 +20,8 @@
#ifndef EC_LENOVO_H8_H
#define EC_LENOVO_H8_H
+#include <types.h>
+
void h8_trackpoint_enable(int on);
void h8_wlan_enable(int on);
void h8_set_audio_mute(int on);
Vladimir Serbinenko (phcoder(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10328
-gerrit
commit 1bfc7ac6ed6740a071be56f7a89f3b65f21b70ab
Author: Vladimir Serbinenko <phcoder(a)gmail.com>
Date: Wed May 27 18:53:12 2015 +0200
board-status: Don't consider Kconfig.name a valid mainboard.
Change-Id: Ibc06b17f48f72d5f9931437ffce020023ece2445
Signed-off-by: Vladimir Serbinenko <phcoder(a)gmail.com>
---
util/board_status/to-wiki/towiki.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/board_status/to-wiki/towiki.sh b/util/board_status/to-wiki/towiki.sh
index 3e80d44..f1a6bd5 100755
--- a/util/board_status/to-wiki/towiki.sh
+++ b/util/board_status/to-wiki/towiki.sh
@@ -144,7 +144,7 @@ EOF
for vendor_board_dir in "$COREBOOT_DIR"/src/mainboard/*/* ; do
board="$(basename "$vendor_board_dir")"
vendor="$(basename "$(dirname "$vendor_board_dir")")"
- if [ "$board" = Kconfig ]; then
+ if [ "$board" = Kconfig ] || [ "$board" = Kconfig.name ]; then
continue
fi
the following patch was just integrated into master:
commit ce58a4e0021eb1b1bb6ab26bdb3bbbff26a5ad83
Author: Vladimir Serbinenko <phcoder(a)gmail.com>
Date: Mon May 18 10:46:57 2015 +0200
Deactivate TPM
Just not exporting TPM isn't good enough as it can still be accessed.
You need to send it a deactivate command.
Change-Id: I3eb84660949c2d1e2b492d541e01d4ba78037630
Signed-off-by: Vladimir Serbinenko <phcoder(a)gmail.com>
Reviewed-on: http://review.coreboot.org/10270
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10270 for details.
-gerrit
the following patch was just integrated into master:
commit a93c0143ac79f937f774b99e4afedee6a20eb5d3
Author: Vladimir Serbinenko <phcoder(a)gmail.com>
Date: Thu May 21 09:28:14 2015 +0200
x201: Add TPM declaration.
This allows to deactivate TPM on X201.
Change-Id: Ic085db6cc2c57668e7a4fdbc7440735c806cc256
Signed-off-by: Vladimir Serbinenko <phcoder(a)gmail.com>
Reviewed-on: http://review.coreboot.org/10278
Tested-by: build bot (Jenkins)
Reviewed-by: Philipp Deppenwiese <zaolin(a)das-labor.org>
See http://review.coreboot.org/10278 for details.
-gerrit
the following patch was just integrated into master:
commit 61273d46197b724598b6a579951a03321a2789c9
Author: Vladimir Serbinenko <phcoder(a)gmail.com>
Date: Wed May 13 17:47:58 2015 +0200
x230: Add TPM declaration.
This allows to deactivate TPM on X230.
Change-Id: I73d4272da62335ec3766ce4814d5b46538b190fe
Signed-off-by: Vladimir Serbinenko <phcoder(a)gmail.com>
Reviewed-on: http://review.coreboot.org/10273
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Philipp Deppenwiese <zaolin(a)das-labor.org>
See http://review.coreboot.org/10273 for details.
-gerrit
the following patch was just integrated into master:
commit ed54cc707b77385af69c1854d64447078a0ddc9a
Author: Vladimir Serbinenko <phcoder(a)gmail.com>
Date: Mon May 18 10:31:35 2015 +0200
sandybridge native: Add call to TPM code.
This allows to deactivate TPM on boards using native sandy/ivy init.
Change-Id: I9455179c7b51097a3a9554c16a407365fbc65e6f
Signed-off-by: Vladimir Serbinenko <phcoder(a)gmail.com>
Reviewed-on: http://review.coreboot.org/10272
Tested-by: build bot (Jenkins)
Reviewed-by: Philipp Deppenwiese <zaolin(a)das-labor.org>
See http://review.coreboot.org/10272 for details.
-gerrit