Re: [coreboot] mingw build problem with seabios/tools/kconfig

2011-03-13 Thread Scott Duplichan
Peter Stuge wrote: ]Scott Duplichan wrote: ] I have not found a way to add '-lregex' to the link command line: ] $(Q)$(HOSTCC) $(HOSTLDFLAGS) -o $@ $(addprefix $(obj)/,$($(@F)-objs)) $(HOST_LOADLIBES) ]$(HOSTLOADLIBES_$(@F)) ] HOSTLDFLAGS occurs too early in the file list for this use. ] ]I'd

Re: [coreboot] mingw build problem with seabios/tools/kconfig

2011-03-13 Thread Scott Duplichan
Patrick Georgi wrote: ]Am 13.03.2011 04:47, schrieb Scott Duplichan: ] Hello, ] ] I am trying to overcome problems buildingseabios/tools/kconfigfrom ] the windows/mingw environment.Hereare the failures: ] 1)Link step fortools/kconfig/conffails to findregcomp/regexec/regfree. ] In the mingw

Re: [coreboot] mingw build problem with seabios/tools/kconfig

2011-03-13 Thread Patrick Georgi
Am 13.03.2011 20:25, schrieb Scott Duplichan: ]In general, maybe just copy over coreboot's kconfig and look for the ]changes (there are some you'd have to revert)? This is essentially what I am doing now. To run abuild, I change the default payload from seabios to none. I am hoping to find a

Re: [coreboot] mingw build problem with seabios/tools/kconfig

2011-03-13 Thread Scott Duplichan
Patrick Georgi wrote: ] I'm not quite sure - are you using mingw or cygwin? ] Patrick I am using mingw. For my OS (Windows Server 2003 x64), cygwin has a severe performance problem. Build time is at least 4 times that of mingw. Building is really painful when I use cygwin. The cygwin version of

Re: [coreboot] Microcode CPU writeup

2011-03-13 Thread Joseph Smith
On 02/28/2011 02:16 AM, Rudolf Marek wrote: Hi all, Would someone be interrested if I write something about microcoded CPUs controllers? Like the classic uCode ROM + ALU + Regs + IO unit? Thanks, Rudolf Yeah sure :-) -- Thanks, Joseph Smith Set-Top-Linux www.settoplinux.org -- coreboot

Re: [coreboot] [PATCH 2/3] ec/acpi: make ACPI register pair configurable

2011-03-13 Thread Stefan Reinauer
* Sven Schnelle sv...@stackframe.org [110312 09:23]: Stefan Reinauer stefan.reina...@coreboot.org writes: * Sven Schnelle sv...@stackframe.org [110312 01:18]: Signed-off-by: Sven Schnelle sv...@stackframe.org --- src/ec/acpi/ec.c | 23 --- src/ec/acpi/ec.h |

Re: [coreboot] mingw build problem with seabios/tools/kconfig

2011-03-13 Thread Kevin O'Connor
On Sat, Mar 12, 2011 at 09:47:56PM -0600, Scott Duplichan wrote: Hello, I am trying to overcome problems building seabios/tools/kconfig from the windows/mingw environment. Here are the failures: 1) Link step for tools/kconfig/conf fails to find regcomp/regexec/regfree. In the mingw

Re: [coreboot] [PATCH 3/3] X60: use I/O 0x1600/0x1604 for ACPI accesses

2011-03-13 Thread Stefan Reinauer
* Sven Schnelle sv...@stackframe.org [110312 09:16]: Stefan Reinauer stefan.reina...@coreboot.org writes: * Sven Schnelle sv...@stackframe.org [110312 01:18]: Signed-off-by: Sven Schnelle sv...@stackframe.org --- src/mainboard/lenovo/x60/mainboard.c |5 + 1 files changed, 5

[coreboot] [DirectHW] [commit] r2 - trunk/macosx/patches

2011-03-13 Thread repository service
Author: stepan Date: Mon Mar 14 03:41:03 2011 New Revision: 2 URL: https://tracker.coreboot.org/trac/directhw/changeset/2 Log: new upstream patch for dmidecode 2.11 Signed-off-by: Stefan Reinauer stefan.reina...@coreboot.org Added: trunk/macosx/patches/dmidecode-2.11.diff Deleted:

[coreboot] [DirectHW] [commit] r3 - trunk/macosx/patches

2011-03-13 Thread repository service
Author: stepan Date: Mon Mar 14 03:46:17 2011 New Revision: 3 URL: https://tracker.coreboot.org/trac/directhw/changeset/3 Log: Add proper Signed-off-by and patch descriptions Signed-off-by: Stefan Reinauer stefan.reina...@coreboot.org Modified: trunk/macosx/patches/dmidecode-2.11.diff

Re: [coreboot] mingw build problem with seabios/tools/kconfig

2011-03-13 Thread Scott Duplichan
Kevin O'Connor wrote: ]On Sat, Mar 12, 2011 at 09:47:56PM -0600, Scott Duplichan wrote: ] Hello, ] ] I am trying to overcome problems building seabios/tools/kconfig from ] the windows/mingw environment. Here are the failures: ] ] 1) Link step for tools/kconfig/conf fails to find

Re: [coreboot] mingw build problem with seabios/tools/kconfig

2011-03-13 Thread Kevin O'Connor
On Sun, Mar 13, 2011 at 09:55:55PM -0500, Scott Duplichan wrote: Kevin O'Connor wrote: ]What about making a file mingw_fixups.h and changing the HOSTCFLAGS ]to add -include mingw_fixups.h. The header can then do something ]like: ] ]#define uname(arg1) memset(arg1, 0, sizeof(*arg1))