search for: 942f97c

Displaying 2 results from an estimated 2 matches for "942f97c".

Did you mean: 942297
2017 Mar 05
0
[PATCH] Fix recognition of keeppxe option
...ot;shuffle_boot_rm failed\n"); > > bail: Adam, how about https://github.com/geneC/syslinux/compare/keeppxe ? I changed to using strstr() and a uint16_t (to match the called function) -- -Gene diff --git a/com32/elflink/ldlinux/kernel.c b/com32/elflink/ldlinux/kernel.c index f3ba37f..942f97c 100644 --- a/com32/elflink/ldlinux/kernel.c +++ b/com32/elflink/ldlinux/kernel.c @@ -48,14 +48,6 @@ int new_linux_kernel(char *okernel, char *ocmdline) sprintf(cmdline, "BOOT_IMAGE=%s %s", kernel_name, args); - /* "keeppxe" handling */ -#if IS_PXELINUX - extern char...
2016 Jun 10
4
[PATCH] Fix recognition of keeppxe option
PXELINUX has stopped recognizing the keeppxe option on the kernel command line. Here is a patch to make it work again. With COM32, it is no longer possible to use preprocessor directives to determine the SYSLINUX variant. The code inside the #if will never be compiled. So, I changed it to use syslinux_filesystem() to determine the variant. Also, I moved the relevant code from