Idwer Vollering (vidwer(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2504
-gerrit
commit 07cdc0d19c5e35b54145444262849338c7d7a595
Author: Idwer Vollering <vidwer(a)gmail.com>
Date: Mon Feb 25 03:49:04 2013 +0100
SerialICE: update qemu-0.15.x/build.sh for glibc 2.17
glibc 2.17 and above use librt.
Update qemu-0.15.x/build.sh to compile when glibc >= 2.17 is installed.
This solves linker errors similar to this:
(32-bit archlinux installation with glibc 2.17-3, binutils 2.23.1-3, glib2 2.34.3-1)
/usr/bin/ld: ../qemu-timer.o: undefined reference to symbol 'timer_settime@@GLIBC_2.2'
/usr/bin/ld: note: 'timer_settime@@GLIBC_2.2' is defined in DSO /usr/lib/librt.so.1 so try adding it to the linker command line
/usr/lib/librt.so.1: could not read symbols: Invalid operation
Change-Id: I2d335d065457788ef8aada7d0d500e84ba31e4d0
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
---
qemu-0.15.x/build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qemu-0.15.x/build.sh b/qemu-0.15.x/build.sh
index 2cac6f5..3dfd3a5 100644
--- a/qemu-0.15.x/build.sh
+++ b/qemu-0.15.x/build.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-./configure --extra-ldflags="-ldl" --disable-kvm --disable-sdl --enable-serialice \
+./configure --extra-ldflags="-ldl -lrt" --disable-kvm --disable-sdl --enable-serialice \
--target-list="x86_64-softmmu, i386-softmmu"
make
the following patch was just integrated into master:
commit d97f5b23aa8945c5b4a34e10f011d26859b430b4
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Fri Feb 22 20:10:08 2013 +0200
Fix some Intel ICH7 filters
The enable bits to route serial COM port ranges to LPC are
a byte register 0x82.
Remove incorrect AC'97 device mappings.
Change-Id: If7b89838d94d953ac19d97d5573bc866bb71d2ba
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/2486
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Build-Tested: build bot (Jenkins) at Fri Feb 22 20:01:08 2013, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Sat Feb 23 01:15:47 2013, giving +2
See http://review.coreboot.org/2486 for details.
-gerrit
the following patch was just integrated into master:
commit e4305885e964c333fa96b8759c23a34405423b5f
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Tue Feb 19 23:50:10 2013 +0200
Add Commell LV-672
Change-Id: I56a2eb48a53c20a055670cab06683a938ec18d5a
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/2478
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martin.roth(a)se-eng.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Build-Tested: build bot (Jenkins) at Fri Feb 22 19:55:11 2013, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Sat Feb 23 01:15:13 2013, giving +2
See http://review.coreboot.org/2478 for details.
-gerrit
the following patch was just integrated into master:
commit 5ad5edc94020fbad9c39902f33a567371abb1b47
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sat Nov 10 18:59:43 2012 +0200
Add MSI MS-7133
Change-Id: I05f50ef3867d2ef0b9ad77d5afd9f49ca5856a77
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/2477
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Build-Tested: build bot (Jenkins) at Fri Feb 22 19:34:22 2013, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Sat Feb 23 01:14:39 2013, giving +2
See http://review.coreboot.org/2477 for details.
-gerrit
Idwer Vollering (vidwer(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2504
-gerrit
commit a96cec2f09cdf0c1d91fa9be3c4b65c3651d251d
Author: Idwer Vollering <vidwer(a)gmail.com>
Date: Mon Feb 25 03:49:04 2013 +0100
SerialICE: update qemu-0.15.x/build.sh
More recent (newer) builds of glibc need to be able to find, and use, librt.
Update qemu-0.15.x/build.sh to make building work again.
Solve linker errors that look similar to this (32-bit archlinux installation):
/usr/bin/ld: ../qemu-timer.o: undefined reference to symbol 'timer_settime@@GLIBC_2.2'
/usr/bin/ld: note: 'timer_settime@@GLIBC_2.2' is defined in DSO /usr/lib/librt.so.1 so try adding it to the linker command line
/usr/lib/librt.so.1: could not read symbols: Invalid operation
Change-Id: I2d335d065457788ef8aada7d0d500e84ba31e4d0
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
---
qemu-0.15.x/build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qemu-0.15.x/build.sh b/qemu-0.15.x/build.sh
index 2cac6f5..3dfd3a5 100644
--- a/qemu-0.15.x/build.sh
+++ b/qemu-0.15.x/build.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-./configure --extra-ldflags="-ldl" --disable-kvm --disable-sdl --enable-serialice \
+./configure --extra-ldflags="-ldl -lrt" --disable-kvm --disable-sdl --enable-serialice \
--target-list="x86_64-softmmu, i386-softmmu"
make
the following patch was just integrated into master:
commit 31de5de7953ae29a91c96821566f52fb4e744063
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Wed Feb 20 00:08:20 2013 +0200
Add some Intel ICH6 filters
Only the most useful BARs added.
Change-Id: I4f3b87f939849fe814045604fee9bc392159aa21
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/2476
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Build-Tested: build bot (Jenkins) at Fri Feb 22 19:39:55 2013, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Sat Feb 23 01:12:54 2013, giving +2
See http://review.coreboot.org/2476 for details.
-gerrit