search for: parent_entry

Displaying 3 results from an estimated 3 matches for "parent_entry".

2019 Apr 26
1
Fix: menu indent for menu entry
...2/menu/readconfig.c 2019-04-26 14:12:26.085625360 -0500 @@ -319,6 +319,15 @@ static void record(struct menu *m, struc struct menu_entry *me; const struct syslinux_ipappend_strings *ipappend; + /* Handle indentation of item with sub-menu while there's no item yet */ + if (m->parent_entry && m->nentries == 0 && ld->menuindent) { + const char *dn; + + rsprintf(&dn, "%*s%s", ld->menuindent, "", m->parent_entry->displayname); + refstr_put(m->parent_entry->displayname); + m->parent_entry->displayname = dn; + } +...
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
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