search for: load_efi

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

2016 Mar 20
0
[PATCH 0/1] EFI image booting capabilities
...sa; > struct mem_ops *mem; > }; This change I was uncertain on at first. Extend the firmware struct instead of exporting the functions and doing an #ifdef. It seems the struct is the cleaner way considering the source is partially split. Body. > diff -uprN a/com32/lib/syslinux/load_efi.c b/com32/lib/syslinux/load_efi.c > --- a/com32/lib/syslinux/load_efi.c 1969-12-31 17:00:00.000000000 -0700 > +++ b/com32/lib/syslinux/load_efi.c 2015-02-18 20:08:04.430708483 -0700 > @@ -0,0 +1,37 @@ > +/* > + * EFI image boot capabilities by Patrick Masotta (Serva) (c)2015...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
...re { struct adv_ops *adv_ops; int (*boot_linux)(void *, size_t, struct initramfs *, struct setup_data *, char *); + int (*boot_efi)(void *, size_t, char *, int); + void (*clear_screen)(void); struct vesa_ops *vesa; struct mem_ops *mem; }; diff -uprN a/com32/lib/syslinux/load_efi.c b/com32/lib/syslinux/load_efi.c --- a/com32/lib/syslinux/load_efi.c 1969-12-31 17:00:00.000000000 -0700 +++ b/com32/lib/syslinux/load_efi.c 2015-02-18 20:08:04.430708483 -0700 @@ -0,0 +1,37 @@ +/* + * EFI image boot capabilities by Patrick Masotta (Serva) (c)2015 + */ + +/* + * load_efi.c + * + *...