Idwer Vollering (vidwer(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6299
-gerrit
commit d7a30ea292415e68f7061aa9324daab439417d37
Author: Idwer Vollering <vidwer(a)gmail.com>
Date: Wed Jul 16 22:22:59 2014 +0200
util/board_status: use the right location of cbfstool
The cbfstool binary in util/ doesn't exist as often as build/cbfstool does.
Since cbfstool obtains details from coreboot.rom, use the binary in build/
Change-Id: Id7d5632f4e5cbd5ede58cd136c37b0dacee9ff93
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
---
util/board_status/board_status.sh | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh
index 7c321b3..f34e398 100755
--- a/util/board_status/board_status.sh
+++ b/util/board_status/board_status.sh
@@ -150,7 +150,10 @@ tmpdir=$(mktemp -d)
# Obtain board and revision info to form the directory structure:
# <vendor>/<board>/<revision>/<timestamp>
-cbfstool_cmd="util/cbfstool/cbfstool"
+cbfstool_cmd="build/cbfstool"
+if test ! -x build/cbfstool; then
+ make -C util/cbfstool/ && cp util/cbfstool/cbfstool build/cbfstool
+fi
test_cmd $LOCAL "$cbfstool_cmd"
$cbfstool_cmd build/coreboot.rom extract -n config -f ${tmpdir}/config.txt
$cbfstool_cmd build/coreboot.rom print > ${tmpdir}/cbfs.txt
the following patch was just integrated into master:
commit 53584fa32f18eafa1f71be511f20d388550b918b
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Tue Jul 15 14:38:51 2014 +0300
AMD get_bus_conf(): Drop bus_type array
Only ever used as lvalue, so no point creating the array.
Change-Id: I6699dfae9377a895e9bc4a52579d00ddcfa60a9f
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/6277
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Reviewed-by: Rudolf Marek <r.marek(a)assembler.cz>
See http://review.coreboot.org/6277 for details.
-gerrit
the following patch was just integrated into master:
commit c4561e24bbdc418e49aa6dbb2689c78a51061ce0
Author: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Date: Thu Jun 26 15:02:40 2014 +1000
drivers/spi: Sanitize headers from preprocessor abuse
Continuing on from the rational given in:
a173a62 Remove guarding #includes by CONFIG_FOO combinations
Change-Id: I35c636ee7c0b106323b3e4b90629f7262750f8bd
Signed-off-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Reviewed-on: http://review.coreboot.org/6114
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick(a)georgi-clan.de>
See http://review.coreboot.org/6114 for details.
-gerrit
Daniele Forsi (dforsi(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6301
-gerrit
commit 8351c0db06e0ba56e57464bd3697e3547ea0d638
Author: Daniele Forsi <dforsi(a)gmail.com>
Date: Thu Jul 17 11:59:41 2014 +0200
src/device/Kconfig: make help for VGA_BIOS_ID and PXE_ROM_ID more similar
Add to VGA_BIOS_ID the hint about lspci -nn and add to PXE_ROM_ID an
empty line at the end for better readability in menuconfig.
Change-Id: I56751c047c1ff08142e2af58ef3ba5fe1169eba5
Signed-off-by: Daniele Forsi <dforsi(a)gmail.com>
---
src/device/Kconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/device/Kconfig b/src/device/Kconfig
index 52d12c7..1b13829 100644
--- a/src/device/Kconfig
+++ b/src/device/Kconfig
@@ -316,6 +316,8 @@ config VGA_BIOS_ID
the "0x" prefix) and 3230 specifies the PCI device ID of the
video card (also in hex, without "0x" prefix).
+ Under GNU/Linux you can run `lspci -nn` to list the IDs of your PCI devices.
+
config INTEL_MBI
bool "Add an MBI image"
depends on NORTHBRIDGE_INTEL_I82830
@@ -534,6 +536,7 @@ config PXE_ROM_ID
network card (also in hex, without "0x" prefix).
Under GNU/Linux you can run `lspci -nn` to list the IDs of your PCI devices.
+
endmenu
config SUBSYSTEM_VENDOR_ID
Daniele Forsi (dforsi(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6301
-gerrit
commit c30fbe9b1ce60d41ce801498bc48cf10a445c8ec
Author: Daniele Forsi <dforsi(a)gmail.com>
Date: Thu Jul 17 11:59:41 2014 +0200
src/device/Kconfig: make help for VGA_BIOS_ID and PXE_ROM_ID more similar
Add to VGA_BIOS_ID the hint about lspci -nn and add to PXE_ROM_ID an empty
line at the end for better readability in menuconfig.
Change-Id: I56751c047c1ff08142e2af58ef3ba5fe1169eba5
Signed-off-by: Daniele Forsi <dforsi(a)gmail.com>
---
src/device/Kconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/device/Kconfig b/src/device/Kconfig
index 52d12c7..1b13829 100644
--- a/src/device/Kconfig
+++ b/src/device/Kconfig
@@ -316,6 +316,8 @@ config VGA_BIOS_ID
the "0x" prefix) and 3230 specifies the PCI device ID of the
video card (also in hex, without "0x" prefix).
+ Under GNU/Linux you can run `lspci -nn` to list the IDs of your PCI devices.
+
config INTEL_MBI
bool "Add an MBI image"
depends on NORTHBRIDGE_INTEL_I82830
@@ -534,6 +536,7 @@ config PXE_ROM_ID
network card (also in hex, without "0x" prefix).
Under GNU/Linux you can run `lspci -nn` to list the IDs of your PCI devices.
+
endmenu
config SUBSYSTEM_VENDOR_ID
the following patch was just integrated into master:
commit 0017c6ee87cafc65b8f0679cb2d4862c281a3043
Author: Paul Menzel <paulepanter(a)users.sourceforge.net>
Date: Sat Jul 12 22:11:24 2014 +0200
intel/lynxpoint/Kconfig: Remove duplicate option `IFD_BIN_PATH`
Currently `IFD_BIN_PATH` is shown twice. Commit 5218e616
(intel/lynxpoint: Allow building without IFD (descripter.bin)) [1]
accidentally added the option another time.
So fix up the commit and remove one of the two options `IFD_BIN_PATH`.
Keep the one which depends on `!HAVE_IFD_BIN` and is around the IFD
options.
[1] http://review.coreboot.org/6046
Change-Id: Id46f01ab8ee2e752e337e687a2ef0dfa374f44a5
Signed-off-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/6269
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <gaumless(a)gmail.com>
See http://review.coreboot.org/6269 for details.
-gerrit
Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6258
-gerrit
commit 32afdd40d9819711380fd588b2822042b3531545
Author: Martin Roth <martin.roth(a)se-eng.com>
Date: Thu Jul 10 14:57:34 2014 -0600
board_status.sh allow cmd() to not save output
- allow for cmd() to be run, but not pipe to a file.
Change-Id: I3e1650e421a49a06218e082ceb5a60b7b4808ce8
Signed-off-by: Martin Roth <martin.roth(a)se-eng.com>
---
util/board_status/board_status.sh | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh
index 7c321b3..20ba48f 100755
--- a/util/board_status/board_status.sh
+++ b/util/board_status/board_status.sh
@@ -60,10 +60,16 @@ _cmd()
return $EXIT_FAILURE
fi
+ if [ -n "$3" ]; then
+ pipe_location="${3}"
+ else
+ pipe_location="/dev/null"
+ fi
+
if [ "$1" -eq "$REMOTE" ] && [ -n "$REMOTE_HOST" ]; then
- ssh root@${REMOTE_HOST} "$2" > "${3}" 2>&1
+ ssh root@${REMOTE_HOST} "$2" > "$pipe_location" 2>&1
else
- $2 > "${3}" 2>&1
+ $2 > "$pipe_location" 2>&1
fi
return $?