LinuxBIOS information wrote:
The developer "stepan" checked in revision 2600 to the LinuxBIOS source repository and caused the following changes:
Build Log: Compilation of arima:hdama is still broken Compilation of technologic:ts5300 is still broken
Stefan,
You need to add the following patch. Without it some compilations will be broken. The patch forces compilation of the x86 emulator and pci_rom code when either CONFIG_PCI_ROM_RUN=1 or CONFIG_CONSOLE_VGA=1. Without the patch they are compiled only when CONFIG_PCI_ROM_RUN=1.
Roman
Index: src/devices/Config.lb =================================================================== --- src/devices/Config.lb (revision 2598) +++ src/devices/Config.lb (working copy) @@ -1,4 +1,6 @@ uses CONFIG_PCI_ROM_RUN +uses CONFIG_CONSOLE_VGA + object device.o object root_device.o object device_util.o @@ -16,3 +18,8 @@ object pci_rom.o dir emulator end + +if CONFIG_CONSOLE_VGA + object pci_rom.o + dir emulator +end