search for: elf_bios_efi

Displaying 2 results from an estimated 2 matches for "elf_bios_efi".

2015 Mar 14
0
[PATCH 0/1] EFI access from Com32 modules
...00 +++ b/com32/include/syslinux/firmware.h 2015-03-13 12:59:12.147356419 -0600 @@ -62,6 +62,8 @@ struct firmware { struct setup_data *, char *); struct vesa_ops *vesa; struct mem_ops *mem; + void* image; + void** table; }; extern struct firmware *firmware; diff -uprN a/com32/modules/elf_bios_efi.c b/com32/modules/elf_bios_efi.c --- a/com32/modules/elf_bios_efi.c 1969-12-31 17:00:00.000000000 -0700 +++ b/com32/modules/elf_bios_efi.c 2015-03-13 14:43:18.266718706 -0600 @@ -0,0 +1,116 @@ +/* + * Demo module showing EFI access from a com32 module + * by Patrick Masotta (Serva) (c) 2015 + */...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
This patch adds to the core EFI image booting capabilities. It was tested on VMware EFI clients and HP Elitebook EFI notebooks, only on PXE environments but it should work on non-PXE scenarios as well. Feedback appreciated. Best, Patrick Signed-off-by: Patrick Masotta <masottaus at yahoo.com> --- diff -uprN a/com32/elflink/ldlinux/execute.c b/com32/elflink/ldlinux/execute.c ---