rather independent, lift the implicit (broken) assumption that CONSOLE_VGA would also run the ROMs, and transfer it to a new config option VGA_ROM_RUN. This change is minimally intrusive, because all board configs that previously assumed CONSOLE_VGA would also run the ROMs didn't compile, they had to also specify PCI_ROM_RUN. Based on patches by Ron Minnich (fix the compile) and Luc Verhaegen (separate ROM_RUN from VGA console). Signed-off-by: Torsten Duwe <duwe@lst.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Luc Verhaegen <libv@skynet.be> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3034 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
24 lines
416 B
Text
24 lines
416 B
Text
uses CONFIG_PCI_ROM_RUN
|
|
uses CONFIG_VGA_ROM_RUN
|
|
object device.o
|
|
object root_device.o
|
|
object device_util.o
|
|
object pci_device.o
|
|
object hypertransport.o
|
|
object pcix_device.o
|
|
object pciexp_device.o
|
|
object agp_device.o
|
|
object cardbus_device.o
|
|
object pnp_device.o
|
|
object pci_ops.o
|
|
object smbus_ops.o
|
|
|
|
if CONFIG_PCI_ROM_RUN
|
|
object pci_rom.o
|
|
dir emulator
|
|
else
|
|
if CONFIG_VGA_ROM_RUN
|
|
object pci_rom.o
|
|
dir emulator
|
|
end
|
|
end
|