search for: alt_kernel

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

Did you mean: add_kernel
2010 Jul 14
1
[PATCH] gfxboot: allow boot entry to start with label instead of menu_label
...t/gfxboot.c | 16 ++++++++++------ 1 files changed, 10 insertions(+), 6 deletions(-) diff --git a/com32/gfxboot/gfxboot.c b/com32/gfxboot/gfxboot.c index dd4d641..77a3275 100644 --- a/com32/gfxboot/gfxboot.c +++ b/com32/gfxboot/gfxboot.c @@ -790,7 +790,7 @@ void boot(int index) { char *arg, *alt_kernel; menu_t *menu_ptr; - int i, label_len; + int i, label_len, menu_label_len; unsigned ipapp; const struct syslinux_ipappend_strings *ipappend; @@ -802,18 +802,22 @@ void boot(int index) if(!menu_ptr || !menu_ptr->menu_label) return; arg = skip_spaces(cmdline); - label_len = s...
2011 Aug 17
1
[patch 1/1] syslinux: add suport for com32 entries in the menu
...rive COM32 chain.c32 APPEND hd0 Signed-off-by: Jorge D Cisneros <jorge.cisneros at hp.com> -- --- com32/gfxboot/gfxboot.c.orig 2011-08-17 10:04:44.000000000 -0500 +++ com32/gfxboot/gfxboot.c 2011-08-17 10:07:34.000000000 -0500 @@ -125,6 +125,7 @@ typedef struct menu_s { char *alt_kernel; // alternative name in case user has replaced it char *linux; // de facto an alias for 'kernel' char *localboot; // boot from local disk + char *com32; // boot other com32 modules char *initrd; // initrd as separate line (instead of as part o...