Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10974
-gerrit
commit 4e0fb20a6a15725afd92135fc2fb90e0f7251858
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Fri Jul 17 23:33:05 2015 +0200
crossgcc: Support /bin/sh pointing to dash
It doesn't know "source", but wants the older "." instead
Change-Id: Iafa61b1d2ffc9c737ab67a417c62417593b69374
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
util/crossgcc/buildgcc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index f59b225..590e1f8 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -109,7 +109,7 @@ normalize_dirs()
please_install()
{
- test -r /etc/os-release && source /etc/os-release
+ test -r /etc/os-release && . /etc/os-release
case "$ID_LIKE" in
debian) solution="sudo apt-get install $1" ;;
suse) solution="sudo zypper install $1" ;;
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10973
-gerrit
commit c33343d67c5e9f55459e7002589ea4198f9de7bc
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Fri Jul 17 23:31:19 2015 +0200
intel/kunimitsu: Fix Kconfig symbol type
BOOT_MEDIA_SPI_BUS is int, not hex.
Change-Id: I5cbcc3889a025caab921208037c8a61d224078a7
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
src/mainboard/intel/kunimitsu/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/intel/kunimitsu/Kconfig b/src/mainboard/intel/kunimitsu/Kconfig
index 01ca168..8971d71 100644
--- a/src/mainboard/intel/kunimitsu/Kconfig
+++ b/src/mainboard/intel/kunimitsu/Kconfig
@@ -30,7 +30,7 @@ config IRQ_SLOT_COUNT
default 18
config BOOT_MEDIA_SPI_BUS
- hex
+ int
default 0
config INTEL_PCH_UART_CONSOLE_NUMBER
Leroy P Leahy (leroy.p.leahy(a)intel.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10207
-gerrit
commit eb567a3f40e1eb4a723cc4205367703bdff65c58
Author: Lee Leahy <leroy.p.leahy(a)intel.com>
Date: Thu May 14 14:50:42 2015 -0700
lib/hexdump: Add xxd hint
For people new to Linux, add the xxd hint to compare output with output
from Linux.
BRANCH=none
BUG=None
TEST=Build and run on cyan
Change-Id: Ia46aeed056b12abbadf8205b044944385d9410e1
Signed-off-by: Lee Leahy <leroy.p.leahy(a)intel.com>
---
src/include/lib.h | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/include/lib.h b/src/include/lib.h
index b81b1b1..d0cd66f 100644
--- a/src/include/lib.h
+++ b/src/include/lib.h
@@ -39,7 +39,11 @@ int primitive_memtest(uintptr_t base, uintptr_t size);
/* Defined in src/lib/stack.c */
int checkstack(void *top_of_stack, int core);
-/* Defined in src/lib/hexdump.c */
+/*
+ * Defined in src/lib/hexdump.c
+ * Use the Linux command "xxd" for matching output. xxd is found in package
+ * https://packages.debian.org/jessie/amd64/vim-common/filelist
+ */
void hexdump(const void *memory, size_t length);
void hexdump32(char LEVEL, const void *d, size_t len);