search for: etherboot_sz

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

Did you mean: etherboot's
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 05
4
[PATCH RFC] hvmloader: Make ROM dependencies optional
...+ vgabios_sz; + option_rom_phys_addr = VGABIOS_PHYSICAL_ADDRESS + vgabios_sz; +#ifdef ENABLE_ETHERBOOT + etherboot_phys_addr = option_rom_phys_addr; if ( etherboot_phys_addr < bios->optionrom_start ) etherboot_phys_addr = bios->optionrom_start; etherboot_sz = scan_etherboot_nic(bios->optionrom_end, etherboot_phys_addr); - option_rom_phys_addr = etherboot_phys_addr + etherboot_sz; + option_rom_phys_addr += etherboot_sz; +#endif option_rom_sz = pci_load_option_roms(bios->optionrom...
2011 Nov 18
2
[PATCH 0 of 2] Add configuration options to selectively disable S3 and S4 (V3)
This patch series adds the ability to selectively disable the S3 and S4 ACPI power states for HVM guests. Since there is a general move towards retiring the hvm_info_table structure, the first patch moves the acpi_enabled flag out of the hvm_info_table and into a xenstore key (platform/acpi). The second patch then introduces the acpi_s3 and acpi_s4 configuration parameters to the xl config file