Zheng Bao (zheng.bao(a)amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11474
-gerrit
commit a13a77e0c957a53f6b2012b8cb95e6a4dcedc927
Author: zbao <fishbaozi(a)gmail.com>
Date: Tue Sep 1 22:31:08 2015 -0400
buildgcc: Check free disk and warn if its size is too small
We can only warn and can not stop building, because if the user
saves the temp file the last time, the space might be enough.
3G is an estimated size, which is required when I build i386-elf.
Change-Id: Iae988300937018f166ff626b75c3a16bfa757ad9
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
---
util/crossgcc/buildgcc | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index bbf01b9..0ed9a39 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -290,6 +290,11 @@ cleanup()
printf "${green}ok${NC}\n"
}
+freedisk() {
+ avail=$(LC_ALL=C eval df -k ./ | sed 1d | awk '{print $4}')
+ test $avail -lt 3145728 && printf "${red}WARNING: There might be not enough space.${NC}\n"
+}
+
myhelp()
{
printf "Usage: $0 [-V] [-c] [-p <platform>] [-d <target directory>] [-D <dest dir>] [-C] [-G] [-S]\n"
@@ -585,6 +590,7 @@ case "$PACKAGE" in
;;
esac
+freedisk
# Find all the required tools:
TAR=$(searchtool tar) || exit $?
Alexander Couzens (lynxis(a)fe80.eu) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11479
-gerrit
commit fccfc585276e7f559e78f2abb2461debdcf5e45f
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Wed Sep 2 00:02:56 2015 +0200
SeaBios: update stable release to 1.8.2
Several USB timing fixes for USB controllers on real hardware
Initial support for USB3 hubs
Initial support for SD cards (on QEMU only)
Initial support for transitioning to 32bit mode using SMIs (on QEMU TCG only)
SeaVGABIOS improvements:
Added cursor emulation to coreboot native init vgabios (cbvga)
Added support for read character calls when in graphics mode
Several bug fixes and code cleanups
Change-Id: Ic99f11dea4c87dbf3e9de4ce7f14064d0a083101
Signed-off-by: Alexander Couzens <lynxis(a)fe80.eu>
---
payloads/external/SeaBIOS/Kconfig | 2 +-
payloads/external/SeaBIOS/Makefile.inc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/payloads/external/SeaBIOS/Kconfig b/payloads/external/SeaBIOS/Kconfig
index 699b986..6224697 100644
--- a/payloads/external/SeaBIOS/Kconfig
+++ b/payloads/external/SeaBIOS/Kconfig
@@ -5,7 +5,7 @@ choice
default SEABIOS_STABLE
config SEABIOS_STABLE
- bool "1.7.5"
+ bool "1.8.2"
help
Stable SeaBIOS version
config SEABIOS_MASTER
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
index 7fb63d4..ec877a9 100644
--- a/payloads/external/SeaBIOS/Makefile.inc
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -1,5 +1,5 @@
TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
-TAG-$(CONFIG_SEABIOS_STABLE)=e51488c5f8800a52ac5c8da7a31b85cca5cc95d2
+TAG-$(CONFIG_SEABIOS_STABLE)=33fbe13a3e2a01e0ba1087a8feed801a0451db21
unexport KCONFIG_AUTOHEADER
unexport KCONFIG_AUTOCONFIG
the following patch was just integrated into master:
commit ef549a04c50aaef425b6f21324aa275d2e1318f4
Author: Duncan Laurie <dlaurie(a)google.com>
Date: Tue Sep 1 09:47:55 2015 -0700
chromeec: Move keyboard backlight code into Chrome EC directory
Since more boards are starting to use the EC provided keyboard
backlight interface move the code to a common place and allow
it to get included in mainboards.
Change-Id: I3f307bbce1a96cdd1c8224b1e89a63d6fedef738
Signed-off-by: Duncan Laurie <dlaurie(a)google.com>
Reviewed-on: http://review.coreboot.org/11478
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin(a)chromium.org>
See http://review.coreboot.org/11478 for details.
-gerrit