search for: msg_count

Displaying 5 results from an estimated 5 matches for "msg_count".

Did you mean: sg_count
2010 Apr 23
1
Path simple menu integrated progress indicator
...6/com32/menu/readconfig.c --- syslinux-3.86-vanilla//com32/menu/readconfig.c 2010-03-31 11:24:25.000000000 -0500 +++ syslinux-3.86/com32/menu/readconfig.c 2010-04-15 09:36:23.000000000 -0500 @@ -49,6 +49,7 @@ static struct menu_entry **all_entries_e static const struct messages messages[MSG_COUNT] = { [MSG_AUTOBOOT] = {"autoboot", "Automatic boot in # second{,s}..."}, [MSG_TAB] = {"tabmsg", "Press [Tab] to edit options"}, + [MSG_LOAD] = {"loadmsg", "Loading"}, [MSG_NOTAB] = {"notabmsg", ""},...
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com> Since we can't use __intcall() for EFI, and since we can now have the ELF module code resolve all our symbols at runtime, we should delete as many references to __intcall() as possible and just access the symbols directly. The most interesting patch is the support for weak symbols. We need to be able to reference derivative-specific
2012 Aug 14
1
[GIT PULL] elflink fixes
...e = parse_image_type(cm->onerror); execute(cm->onerror, type); } } else { diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c index 8f9d237..69f524c 100644 --- a/com32/menu/readconfig.c +++ b/com32/menu/readconfig.c @@ -62,7 +62,7 @@ static const struct messages messages[MSG_COUNT] = { __p; }) /* Must match enum kernel_type */ -const char *const kernel_types[] = { +static const char *const kernel_types[] = { "none", "localboot", "kernel", diff --git a/com32/modules/Makefile b/com32/modules/Makefile index...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and