search for: load_rom

Displaying 8 results from an estimated 8 matches for "load_rom".

Did you mean: load_from
2011 Jul 23
9
[PATCH] Replace bios_relocate hook with bios_load hook in hvmloader
..., VGA_cirrus, VGA_pt, VGA_custom }; extern enum virtual_vga virtual_vga; struct bios_config { @@ -16,6 +16,9 @@ /* Physical address to load at */ unsigned int bios_address; + /* Custom load function. */ + void (*load)(const struct bios_config *config); + /* ROMS */ int load_roms; unsigned int optionrom_start, optionrom_end; @@ -23,8 +26,6 @@ void (*bios_info_setup)(void); void (*bios_info_finish)(void); - void (*bios_relocate)(void); - void (*vm86_setup)(void); void (*e820_setup)(void); @@ -36,6 +37,8 @@ extern struct bios_config rombios_co...
2012 Feb 11
14
[PATCH v3 0/5] hvmloader: Make ROM dependencies optional
...f wether or not rombios is enabled, rather than on an individual basis Introduced config options to select support for rombios/seabios v3: Fix mkhex script to take several file arguments on the command line Reorganize hvmloader option ROM loading code to make it optionnal, and make bios->load_roms a callback that the BIOS support code has to implement if option ROM loading is desired. Cosmetic change in tools/firmware/Makefile in the way seabios-dir is created. Julian Pidancet (5): hvmloader: Only compile 32bitbios_support.c when rombios is enabled hvmloader: Allow the mkhex comman...
2011 Jul 18
1
Re: trip to shanghai
...gt; +++ b/tools/firmware/hvmloader/hvmloader.c      Fri Jul 15 11:37:12 2011 +0000 > >> >> @@ -430,7 +430,7 @@ int main(void) > >> >>             bios->create_pir_tables(); > >> >>     } > >> >> > >> >> -    if ( bios->load_roms ) > >> >> +    if ( 1 ) > >> >>     { > >> >>         switch ( virtual_vga ) > >> >>         { > >> >> > >> >> > >> > > >> > Yes. Vga bios is booted. However, the upstram qemu receives...
2012 Feb 05
4
[PATCH RFC] hvmloader: Make ROM dependencies optional
When booting HVMs with SeaBIOS, the BIOS itself takes care of extracting option ROMs from the PCI devices. These ROMs are usually provided with by the device model (qemu). Thus, hvmloader should not require any longer the rombios, stdvga, cirrusvga or etherboot ROMs to be present. Also, the 32bitbios_support.c file is specific to rombios and should not be built when building hvmloader with
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
2013 Aug 23
2
[PATCH] hvmloader: fix SeaBIOS interface
...(seabios) > (0x00100000U - SEABIOS_PHYSICAL_ADDRESS)); - struct bios_config seabios_config = { .name = "SeaBIOS", .image = seabios, .image_size = sizeof(seabios), - .bios_address = SEABIOS_PHYSICAL_ADDRESS, + .bios_address = 0x100000 - sizeof(seabios), .load_roms = NULL, _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2011 Jul 21
51
Linux Stubdom Problem
...ware/hvmloader/hvmloader.c      Fri Jul 15 11:37:12 2011 +0000 >> >> >> @@ -430,7 +430,7 @@ int main(void) >> >> >>             bios->create_pir_tables(); >> >> >>     } >> >> >> >> >> >> -    if ( bios->load_roms ) >> >> >> +    if ( 1 ) >> >> >>     { >> >> >>         switch ( virtual_vga ) >> >> >>         { >> >> >> >> >> >> >> >> > >> >> > Yes. Vga bios is booted. Ho...
2005 Mar 22
18
[PATCH] tools top level makefile cleanup
I cleaned up the top level makefile in the tools directory. No major changes. Except I have it so that ioemmu is compiled only with x86_32. Signed-off-by: Jerone Young <jyoung5@us.ibm.com> --- tools/Makefile.orig 2005-03-17 21:03:44.000000000 -0600 +++ tools/Makefile 2005-03-22 15:05:20.000000000 -0600 @@ -1,37 +1,33 @@ +XEN_ROOT = ../ +include $(XEN_ROOT)/tools/Rules.mk -all: -