search for: dothejob

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

2015 Mar 14
0
[PATCH 0/1] EFI access from Com32 modules
...quot;../../efi/efi.h" + +#endif + + + +#ifdef __FIRMWARE_BIOS__ + +int pressanykey(void) { + int inc; + + printf("Press any key to continue. "); + inc = KEY_NONE; + while (inc == KEY_NONE) + inc = get_key(stdin, 6000); + puts(""); + return inc; +} + +int doTheJob(void) +{ + + printf("This Com32 instance of elf_bios_efi.c32 is running on a BIOS environment\n"); + pressanykey(); + + return 0; +} + +#else + +char efi_getchar(char *hi) +{ + SIMPLE_INPUT_INTERFACE *in = ST->ConIn; + EFI_INPUT_KEY key; + EFI_STATUS status; + + + status = WaitF...
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 ---