[coreboot] FW: [PATCH]: vga bios was added into image by cbfstool, not by "cat" any more.

Myles Watson mylesgw at gmail.com
Fri Oct 30 02:58:00 CET 2009


On Thu, Oct 29, 2009 at 7:28 PM, Peter Stuge <peter at stuge.se> wrote:

> Stefan Reinauer wrote:
> > CONFIG_PCI_ROM_RUN: Run all option roms
>
Now it's run all option roms except VGA.

> > CONFIG_VGA_ROM_RUN: Run only VGA option roms
>

from src/devices/pci_device.c:

#if CONFIG_PCI_ROM_RUN == 1 || CONFIG_VGA_ROM_RUN == 1
    void run_bios(struct device *dev, unsigned long addr);
    struct rom_header *rom, *ram;

    if (CONFIG_PCI_ROM_RUN != 1 && /* Only execute VGA ROMs. */
        ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
        return;

    if (CONFIG_VGA_ROM_RUN != 1 && /* Only execute non-VGA ROMs. */
        ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
        return;

They got separated so that you can turn them off individually.


>
> Would anyone cry if these were renamed?
>
What would you like to name them?

Thanks,
Myles
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.coreboot.org/pipermail/coreboot/attachments/20091029/57214bf7/attachment.html>


More information about the coreboot mailing list