search for: etherboot_phys_addr

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

2012 Feb 05
4
[PATCH RFC] hvmloader: Make ROM dependencies optional
...sizeof(vgabios_stdvga)); vgabios_sz = round_option_rom(sizeof(vgabios_stdvga)); +#endif break; case VGA_pt: printf("Loading VGABIOS of passthroughed gfx ...\n"); @@ -496,13 +502,16 @@ int main(void) break; } - etherboot_phys_addr = VGABIOS_PHYSICAL_ADDRESS + 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-&gt...
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
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