Patrick Rudolph (siro@das-labor.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14219
-gerrit
commit b997dab411537187fe4f5f0601233d8751523da0 Author: Patrick Rudolph siro@das-labor.org Date: Fri Mar 18 18:03:32 2016 +0100
device/pci_rom: Always use pci_rom
The following series always needs to access the functions provided pci_rom.c.
Remove the dependency to CONFIG_VGA_ROM_RUN.
Change-Id: I6ed7ff5380edc7cd88dc1c71b43b1129a3de0f52 Signed-off-by: Patrick Rudolph siro@das-labor.org --- src/device/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/device/Makefile.inc b/src/device/Makefile.inc index 6bad0cd..76c59e5 100644 --- a/src/device/Makefile.inc +++ b/src/device/Makefile.inc @@ -25,7 +25,7 @@ romstage-$(CONFIG_PCI) += pci_early.c
subdirs-y += oprom dram
-ramstage-$(CONFIG_VGA_ROM_RUN) += pci_rom.c +ramstage-y += pci_rom.c
bootblock-$(CONFIG_SOFTWARE_I2C) += software_i2c.c verstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c