Dear LinuxBIOS readers!
This is the automated build check service of LinuxBIOS.
The developer "stepan" checked in revision 2600 to the LinuxBIOS source repository and caused the following changes:
Change Log: This patch corrects r2587. It makes sure that the VGA is initialized when CONFIG_CONSOLE_VGA==0 and CONFIG_PCI_ROM_RUN==1
Signed-off-by: Roman Kononov kononov@dls.net Acked-by: Stefan Reinauer stepan@coresystems.de
Build Log: Compilation of amd:quartet is still broken Compilation of amd:serenade is still broken Compilation of amd:serengeti_leopard is still broken Compilation of amd:solo is still broken Compilation of arima:hdama is still broken Compilation of artecgroup:dbe61 is still broken Compilation of gigabyte:m57sli is still broken Compilation of ibm:e325 is still broken Compilation of ibm:e326 is still broken Compilation of iwill:dk8_htx is still broken Compilation of iwill:dk8s2 is still broken Compilation of iwill:dk8x is still broken Configuration of msi:ms9282 is still broken Compilation of nvidia:l1_2pvv is still broken Compilation of technologic:ts5300 is still broken Compilation of tyan:s2912 is still broken
If something broke during this checkin please be a pain in stepan's neck until the issue is fixed.
If this issue is not fixed within 24h the revision will be backed out.
Yours truely, LinuxBIOS automatic build system
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
On Mon, Apr 09, 2007 at 11:18:55PM -0500, Roman Kononov wrote:
object pci_rom.o dir emulator end
+if CONFIG_CONSOLE_VGA
- object pci_rom.o
- dir emulator
+end
What happens if the same object or dir is included multiple times? Does the config tool handle that automatically?
//Peter
On 04/10/2007 12:16 AM, Peter Stuge wrote:
What happens if the same object or dir is included multiple times? Does the config tool handle that automatically?
From what I observe, the config tool issues warnings, the repeated files are compiled exactly once and archived into linuxbios.a, which is then linked to make linuxbios_ram.o. I can see same warnings with regard to other files and directories.
Roman