[coreboot] [PATCH] Add K8T800, K8T800Pro*, and K8M800* support

2011-02-11 Thread Alex G.
Find attached a new version of my previous patch for the K8T800. In my previous patch, I was worried that the .tblpointer could contain incorrect values. I have hexdumped the image for the A8V-E SE (K8T8900 chipset), and it contains the correct values. The same applies to the board I'm porting (wit

Re: [coreboot] Fwd: inteltool: first preview for machine-readable output

2011-02-11 Thread Sven Schnelle
Hi, Антон Кочков writes: At first, can you please give us a few use cases for this patch? > inteltool: first preview for machine-readable output > Signed-off-by: Anton Kochkov > --- > > This is only for preview and discussion, it's still ugly and dont safe/clear. > void machine_readable_print

[coreboot] [PATCH 2/4] libpayload: Less noisy lpgcc

2011-02-11 Thread Patrick Georgi
lpgcc was too noisy in some cases Signed-off-by: Patrick Georgi --- payloads/libpayload/bin/lpgcc |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/payloads/libpayload/bin/lpgcc b/payloads/libpayload/bin/lpgcc index 826e498..57015d5 100755 --- a/payloads/libpayload/bin/

[coreboot] [PATCH 1/4] libpayload: Some more POSIX compatibility

2011-02-11 Thread Patrick Georgi
- Add assert.h - Add arpa/inet.h - Add assert-macro Signed-off-by: Patrick Georgi --- payloads/libpayload/include/arpa/inet.h | 36 payloads/libpayload/include/assert.h| 39 +++ 2 files changed, 75 insertions(+), 0 deletions(-) cr

[coreboot] [PATCH 3/4] libpayload: Stub out FILE*, stdout/stdin/stderr and implement fprintf on these

2011-02-11 Thread Patrick Georgi
- Add FILE* - Add stdout, stdin, stderr stubs - Add fprintf that redirects to printf for stdout and stderr and fails otherwise Signed-off-by: Patrick Georgi --- payloads/libpayload/include/stdio.h | 11 ++- payloads/libpayload/libc/printf.c | 14 ++ 2 files changed, 2

[coreboot] [PATCH 4/4] libpayload: Use fprintf(stderr, ...) in library

2011-02-11 Thread Patrick Georgi
If we have it, why not use it? Signed-off-by: Patrick Georgi --- payloads/libpayload/include/assert.h |3 ++- payloads/libpayload/libc/lib.c |2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/payloads/libpayload/include/assert.h b/payloads/libpayload/include/ass

Re: [coreboot] [PATCH 2/4] libpayload: Less noisy lpgcc

2011-02-11 Thread Stefan Reinauer
On 11.02.2011, at 01:38, Patrick Georgi wrote: > lpgcc was too noisy in some cases > > Signed-off-by: Patrick Georgi Acked-by: Stefan Reinauer > --- > payloads/libpayload/bin/lpgcc |4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/payloads/libpayload/bin/lpgc

Re: [coreboot] [PATCH 1/4] libpayload: Some more POSIX compatibility

2011-02-11 Thread Stefan Reinauer
On 11.02.2011, at 01:36, Patrick Georgi wrote: > - Add assert.h > - Add arpa/inet.h > - Add assert-macro > > Signed-off-by: Patrick Georgi Acked-by: Stefan Reinauer > --- > payloads/libpayload/include/arpa/inet.h | 36 > payloads/libpayload/include/assert.h

Re: [coreboot] [PATCH 3/4] libpayload: Stub out FILE*, stdout/stdin/stderr and implement fprintf on these

2011-02-11 Thread Stefan Reinauer
On 11.02.2011, at 01:57, Patrick Georgi wrote: > - Add FILE* > - Add stdout, stdin, stderr stubs > - Add fprintf that redirects to printf for stdout and stderr and fails > otherwise > > Signed-off-by: Patrick Georgi Acked-by: Stefan Reinauer > --- > payloads/libpayload/include/stdio.h |

Re: [coreboot] [PATCH 4/4] libpayload: Use fprintf(stderr, ...) in library

2011-02-11 Thread Stefan Reinauer
On 11.02.2011, at 02:00, Patrick Georgi wrote: > If we have it, why not use it? > > Signed-off-by: Patrick Georgi Acked-by: Stefan Reinauer > --- > payloads/libpayload/include/assert.h |3 ++- > payloads/libpayload/libc/lib.c |2 +- > 2 files changed, 3 insertions(+), 2 deletio

Re: [coreboot] coreboot.rom

2011-02-11 Thread Marc Jones
On Wed, Feb 9, 2011 at 6:35 AM, ali hagigat wrote: > How the file coreboot.rom is written on BIOS chip logically? Suppose > our BIOS chip is 1 mega bytes. We should read first byte from the > beginning of the file and write it to the address zero of BIOS chip > and continue this way? > > I checked

Re: [coreboot] searching volunteer to install coreboot on asus m4a78 pro

2011-02-11 Thread Marc Jones
On Thu, Feb 10, 2011 at 8:09 AM, Jelle de Jong wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hello everybody, > > I would like to start with thanking all volunteers on the coreboot > project! At FOSDEM 2011 I had dinner with two of the volunteers. I have > been watching the coreboot

[coreboot] SVN service down?

2011-02-11 Thread Gregg Levine
Hello! I've been trying to update my checked out coreboot code drop since just ten minutes ago. In fact I would bring up a console and enter at the appropriate directory, "svn update" (without quotes) and wait. It would seem to be hanging. Network monitors would only indicate that my SSH shell is t

Re: [coreboot] SVN service down?

2011-02-11 Thread David Hendricks
On Fri, Feb 11, 2011 at 4:34 PM, Gregg Levine wrote: > Hello! > I've been trying to update my checked out coreboot code drop since > just ten minutes ago. In fact I would bring up a console and enter at > the appropriate directory, "svn update" (without quotes) and wait. It > would seem to be hang

[coreboot] [FILO] r140 - trunk/filo/fs

2011-02-11 Thread repository service
Author: stepan Date: Sat Feb 12 03:01:44 2011 New Revision: 140 URL: http://tracker.coreboot.org/trac/filo/changeset/140 Log: Allow FILO to boot off EXT4 partitions. Using adapted http://grub4ext4.googlecode.com/svn/trunk/ext4-support Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer M

Re: [coreboot] SVN service down?

2011-02-11 Thread Gregg Levine
On Fri, Feb 11, 2011 at 8:41 PM, David Hendricks wrote: > On Fri, Feb 11, 2011 at 4:34 PM, Gregg Levine > wrote: >> >> Hello! >> I've been trying to update my checked out coreboot code drop since >> just ten minutes ago. In fact I would bring up a console and enter at >> the appropriate directory

Re: [coreboot] searching volunteer to install coreboot on asus m4a78 pro

2011-02-11 Thread xdrudis
My setup is similar to yours, I bought it trying to get easy coreboot support (easy, not immediate, and also some features), I've spent some 6 months trying to "install coreboot" and it still does not boot. But I'm not experienced in low level programming and I don't have that much spare time to