|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH 1 of 3] Enable UEFI BIOS(OVMF) support in Xen-uns
On 23/07/2011 16:18, "Bei Guan" <gbtju85@xxxxxxxxx> wrote:
> Do you mean that put the bios_relocate hook in the "else" statement? Just like
> this:
>
> if (bios->load) {
> bios->load(bios);
> } else {
> printf("Loading %s ...\n", bios->name);
> memcpy((void *)bios->bios_address, bios->image,
> bios->image_size);
>
> if (bios->bios_relocate)
> bios->bios_relocate();
> }
No I mean remove the bios_relocate hook entirely, and modify the rombios
handler to use your new hook instead. It should be quite easy.
-- Keir
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|