Submitter | Patrick Georgi |
---|---|
Date | 2009-09-29 16:13:26 |
Message ID | <1254240806.6184.43.camel@tetris> |
Download | mbox | patch |
Permalink | /patch/307/ |
State | Accepted |
Headers | show |
Comments
On Tue, Sep 29, 2009 at 10:13 AM, Patrick Georgi <patrick@georgi-clan.de>wrote: > Uh, > and add this file, so the necessary options are actually _there_ (there > might be more, as said, I'll start caring when kconfig is available for > all boards) > > > Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> > Acked-by: Myles Watson <mylesgw@gmail.com> Unfortunately I was doing the same thing, so I have some fixups when this gets committed. Thanks, Myles
Patrick Georgi wrote: > Uh, > and add this file, so the necessary options are actually _there_ (there > might be more, as said, I'll start caring when kconfig is available for > all boards) > > > Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> > Acked-by: Stefan Reinauer <stepan@coresystems.de>
Patch
Index: src/mainboard/kontron/986lcd-m/Kconfig =================================================================== --- src/mainboard/kontron/986lcd-m/Kconfig (Revision 4686) +++ src/mainboard/kontron/986lcd-m/Kconfig (Arbeitskopie) @@ -9,6 +9,7 @@ select HAVE_PIRQ_TABLE select MMCONF_SUPPORT select USE_PRINTK_IN_CAR + select AP_IN_SIPI_WAIT help Kontron 986LCD-M/mITX mainboard. @@ -42,3 +43,7 @@ default "986LCD-M" depends on BOARD_KONTRON_986LCD_M +config MMCONF_BASE_ADDRESS + hex + default 0xf0000000 + depends on BOARD_KONTRON_986LCD_M Index: src/mainboard/intel/eagleheights/Kconfig =================================================================== --- src/mainboard/intel/eagleheights/Kconfig (Revision 4686) +++ src/mainboard/intel/eagleheights/Kconfig (Arbeitskopie) @@ -46,3 +46,8 @@ default "EagleHeights" depends on BOARD_INTEL_EAGLEHEIGHTS +config MMCONF_BASE_ADDRESS + hex + default 0xe0000000 + depends on BOARD_INTEL_EAGLEHEIGHTS +
Uh, and add this file, so the necessary options are actually _there_ (there might be more, as said, I'll start caring when kconfig is available for all boards) Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>