search for: option_rom_end

Displaying 3 results from an estimated 3 matches for "option_rom_end".

2012 Feb 11
14
[PATCH v3 0/5] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to
2012 Feb 10
6
[PATCH v2 0/3] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to
2012 Feb 05
4
[PATCH RFC] hvmloader: Make ROM dependencies optional
...return round_option_rom(rom->rom_size * 512 + 1); } +#ifdef ENABLE_ETHERBOOT /* * Scan the PCI bus for the first NIC supported by etherboot, and copy * the corresponding rom data to *copy_rom_dest. Returns the length of the @@ -264,6 +265,7 @@ static int scan_etherboot_nic(unsigned int option_rom_end, return rom_size; } +#endif /* * Scan the PCI bus for the devices that have an option ROM, and copy @@ -475,16 +477,20 @@ int main(void) switch ( virtual_vga ) { case VGA_cirrus: +#ifdef ENABLE_CIRRUSVGA printf("Loading Cirrus VGABIOS ...\n&...