On Tue, Aug 25, 2009 at 04:41:38PM +0200, [email protected] wrote: > Add vendor strings in mainboard/Kconfig. Trivial. > > Signed-off-by: Myles Watson <[email protected]> > Acked-by: Myles Watson <[email protected]> > > > Modified: trunk/coreboot-v2/src/mainboard/Kconfig > =================================================================== > --- trunk/coreboot-v2/src/mainboard/Kconfig 2009-08-25 14:22:58 UTC (rev > 4574) > +++ trunk/coreboot-v2/src/mainboard/Kconfig 2009-08-25 14:41:38 UTC (rev > 4575) > @@ -97,24 +97,224 @@ > > config MAINBOARD_VENDOR > string > + default "A-Trend" > + depends on VENDOR_ATREND > + > +config MAINBOARD_VENDOR > + string > + default "Abit" > + depends on VENDOR_ABIT > +
Am I guessing correctly that the rationale here is that boards don't need to do this: +config MAINBOARD_VENDOR + string + default "MSI" + depends on BOARD_MSI_MS6178 + +config MAINBOARD_PART_NUMBER + string + default "MS-6178" + depends on BOARD_MSI_MS6178 But instead this should be sufficient per-board? +config MAINBOARD_PART_NUMBER + string + default "MS-6178" + depends on BOARD_MSI_MS6178 Thanks, Uwe. -- http://www.hermann-uwe.de | http://www.holsham-traders.de http://www.crazy-hacks.org | http://www.unmaintained-free-software.org -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

