Corey Osgood wrote:
On Tue, Jan 20, 2009 at 5:21 PM, Stefan Reinauer <stepan@coresystems.de mailto:stepan@coresystems.de> wrote:
see patches - use new features of the ich7 update - move rambase above 1M to avoid memory trashing through SMM relocation - enable superio HWM Signed-off-by: Stefan Reinauer <stepan@coresystems.de <mailto:stepan@coresystems.de>> Index: src/mainboard/kontron/986lcd-m/Config.lb =================================================================== --- src/mainboard/kontron/986lcd-m/Config.lb (revision 3882) +++ src/mainboard/kontron/986lcd-m/Config.lb (working copy) @@ -82,7 +82,7 @@ object acpi_tables.o makerule dsdt.c depends "$(MAINBOARD)/dsdt.dsl" - action "iasl -p $(PWD)/dsdt -tc $(MAINBOARD)/dsdt.dsl" + action "iasl -p dsdt -tc $(MAINBOARD)/dsdt.dsl"
Is this right, or a local change that snuck in?
That's due to a bug in iasl not parsing long command lines correctly. If you're working in a deep enough subdirectory, you might see it just cutting off the path and producing bogus files. This is a workaround by dramatically shortening the command line.
Acked-by: Corey Osgood <corey.osgood@gmail.com mailto:corey.osgood@gmail.com>
Thanks!
Update ICH7 driver - minor smi cosmetics (in progress) - add real ac97 driver - add real azalia driver - fix some interrupt issues - fix some sata issues Signed-off-by: Stefan Reinauer <stepan@coresystems.de <mailto:stepan@coresystems.de>>
There are a bunch of instances of uintX_t and a few of device_t, can you update them to the newer style? Other then that:
What's the newer style? u32 instead of uint32_t? and struct device * instead of device_t?
I'll go for this in another patch once my queue is a bit saner.
Acked-by: Corey Osgood <corey.osgood@gmail.com mailto:corey.osgood@gmail.com>
Thanks.