See patch.
I'll tackle the i810 boards (and other romcc boards) next, I guess.
Uwe.
+config BOARD_SOYO_SY_6BA_PLUS_III + bool "SY-6BA+ III" + select ARCH_X86 + select CPU_INTEL_SLOT_2 + select NORTHBRIDGE_INTEL_I440BX + select SOUTHBRIDGE_INTEL_I82371EB + select SUPERIO_ITE_IT8671F + select HAVE_PIRQ_TABLE + select UDELAY_IO + select PCI_ROM_RUN + select CONSOLE_VGA + help + SOYO SY-6BA+ III mainboard. +
* PCI_ROM_RUN and CONSOLE_VGA shouldn't be set by boards. * I like the name Makefile.romcc.inc (good idea to factor it out!)
Acked-by: Myles Watson mylesgw@gmail.com
Thanks, Myles
On Wed, Aug 26, 2009 at 08:59:17AM -0600, Myles Watson wrote:
+config BOARD_SOYO_SY_6BA_PLUS_III
- bool "SY-6BA+ III"
- select ARCH_X86
- select CPU_INTEL_SLOT_2
- select NORTHBRIDGE_INTEL_I440BX
- select SOUTHBRIDGE_INTEL_I82371EB
- select SUPERIO_ITE_IT8671F
- select HAVE_PIRQ_TABLE
- select UDELAY_IO
- select PCI_ROM_RUN
- select CONSOLE_VGA
- help
SOYO SY-6BA+ III mainboard.
- PCI_ROM_RUN and CONSOLE_VGA shouldn't be set by boards.
- I like the name Makefile.romcc.inc (good idea to factor it out!)
Acked-by: Myles Watson mylesgw@gmail.com
Thanks, r4587.
I kept the PCI_ROM_RUN/CONSOLE_VGA for now, will change those in an extra commit after I've done some testing.
Uwe.
On 8/26/09 4:45 PM, Uwe Hermann wrote:
See patch.
I'll tackle the i810 boards (and other romcc boards) next, I guess.
Uwe. -- http://www.hermann-uwe.de | http://www.holsham-traders.de http://www.crazy-hacks.org | http://www.unmaintained-free-software.org
Add kconfig support for all missing Intel 440BX based boards.
This includes:
soyo/sy-6ba-plus-iii a-trend/atc-6240 a-trend/atc-6220 gigabyte/ga-6bxc biostar/m6tba azza/pt-6ibd tyan/s1846 abit/be6-ii_v2_0 compaq/deskpro_en_sff_p600msi/ms6119 msi/ms6147 asus/p2b asus/p2b-d asus/p2b-ds asus/p3b-f
The Makefile.inc for all of them are _exactly_ the same, so I made a common src/mainboard/Makefile.romccboard.inc (maybe needs a nicer name). I also suspect that many other romcc-based boards will be able to re-use this Makefile.inc.
Apart from the board name, most boards only differ in the Super I/O that's being used and the IRQ_SLOT_COUNT value. The Tyan S1846 is a bit different as it doesn't have an irq_tables.c.
I also dropped the broken MS-6178 kconfig stuff for now, I'll submit a proper config in another patch.
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de
Acked-by: Stefan Reinauer stepan@coresystems.de
You rock!
This is really wonderful stuff. I think that this kind of work is going to make the Kconfig move really easy!
ron