the following patch was just integrated into master:
commit 5cdbc2b9e1985c6943638011d0d77f02833878cb
Author: Mathias Krause <minipli(a)googlemail.com>
Date: Tue Apr 3 21:02:33 2012 +0200
libpayload: avoid excessive casts in printf.c
struct printf_spec is a purely internal structure. Avoid excessive casts
when using the write function pointer just to make the compiler happy by
using the right types in the first place.
Change-Id: Ia4f3c79a5283cb76c8aa5f9d1eee758676303382
Signed-off-by: Mathias Krause <minipli(a)googlemail.com>
Build-Tested: build bot (Jenkins) at Tue Apr 3 21:50:34 2012, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Wed Apr 4 00:41:07 2012, giving +2
See http://review.coreboot.org/850 for details.
-gerrit
the following patch was just integrated into master:
commit 82eb56b102aa2294961bb65a244b537d521b9d12
Author: Mathias Krause <minipli(a)googlemail.com>
Date: Tue Apr 3 20:42:01 2012 +0200
libpayload: minor cleanups
Apply some const correctness to const/non-const strings in libc and
libpci (what an ugly cast that was).
Remove duplicated NULL test in printf_putstr(), already done in
print_string() - reduces size of libpayload by a few bytes.
Change-Id: I13f479df13e39d79cab291e9d99d153e1ef43eae
Signed-off-by: Mathias Krause <minipli(a)googlemail.com>
Build-Tested: build bot (Jenkins) at Tue Apr 3 21:36:56 2012, giving +1
See http://review.coreboot.org/849 for details.
-gerrit
the following patch was just integrated into master:
commit 89b0a39450aa1e4d7d91f2bad7d2802833789e55
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Tue Apr 3 11:22:15 2012 -0700
Don't unconditionally show ChromeOS options
Google ChromeOS specific options were shown in the main menu
unconditionally, even on non-ChromeOS devices. Instead, hide
these options unless CONFIG_CHROMEOS is set, and also put them
in a separate menu.
Change-Id: I75f533ed5046d6df4f7d959a0ca4c2441340ef2f
Signed-off-by: Stefan Reinauer <reinauer(a)google.com>
Build-Tested: build bot (Jenkins) at Tue Apr 3 21:20:40 2012, giving +1
See http://review.coreboot.org/848 for details.
-gerrit
On Tue, Mar 20, 2012 at 4:36 PM, Julian Shulika <hercares(a)gmail.com> wrote:
> Could you please show log from serial,your board has com port.
Finally got a couple spare flash chips and a way to capture the serial output.
coreboot-4.0-2227-g4a2daf6 Tue Apr 3 15:29:40 CDT 2012 starting...
BSP Family_Model: 00600f12
*sysinfo range: [000cc000,000cf360]
bsp_apicid = 00
cpu_init_detectedx = 00000000
microcode: rev id not foung, Skipping microcode patch!
POST: 0x33
cpuSetAMDMSR FIXME! CPU Version unknown or not supported!
FIXME! CPU Version unknown or not supported!
FIXME! CPU Version unknown or not supported!
done
POST: 0x34
Enter amd_ht_init()
>
> 2012/3/20 Jonathan Bennett <jbscience87(a)gmail.com>
>>
>> I bought an M5A88-v Motherboard (
>>
>> http://www.newegg.com/Product/Product.aspx?Item=N82E16813131733&Tpk=m5a88-v
>> ) and an amd FX-4170 (
>> http://www.newegg.com/Product/Product.aspx?Item=N82E16819106009 )
>>
>> I use Fedora 16 on this machine. Compiled coreboot with a vga bios
>> from my board, flashed it, and in doing managed to brick the board. I
>> have another computer I was able to use to flash a vendor bios onto
>> the rom chip. Compiled again without video bios, and used a
>> pci-express graphics card. Still no luck. I'm running the machine with
>> stock firmware, but I'd love to be able to try out coreboot and
>> seabios.
>>
>> With Coreboot on it, The machine powered on and the fans spun up.
>> That's about it. No HD activity beyond power being applied. Ethernet
>> port never powered, screen never came out of power save. Seems to have
>> been bricked.
>>
>> Any ideas?
>>
>> Jonathan Bennett
>>
>> --
>> coreboot mailing list: coreboot(a)coreboot.org
>> http://www.coreboot.org/mailman/listinfo/coreboot
>
>
Stefan Reinauer (stefan.reinauer(a)coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/856
-gerrit
commit d93b82ff774411f77f8d2760298cb75ffe3d0529
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Wed Apr 4 00:21:37 2012 +0200
Move TPM code to romstage
We want to do TPM initialization as early as possible to keep
the impact on boot time low. Therefore move it to romstage.
Change-Id: I5f2e021e0b11bd70a78ad1f05ec09802d015dd9e
Signed-off-by: Stefan Reinauer <reinauer(a)google.com>
---
src/pc80/Makefile.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/pc80/Makefile.inc b/src/pc80/Makefile.inc
index cd6ea33..8ca21bf 100644
--- a/src/pc80/Makefile.inc
+++ b/src/pc80/Makefile.inc
@@ -4,7 +4,7 @@ ramstage-y += i8254.c
ramstage-y += i8259.c
ramstage-$(CONFIG_UDELAY_IO) += udelay_io.c
ramstage-y += keyboard.c
-ramstage-$(CONFIG_TPM) += tpm.c
+romstage-$(CONFIG_TPM) += tpm.c
romstage-$(CONFIG_USE_OPTION_TABLE) += mc146818rtc_early.c
subdirs-y += vga