search for: ma_disabled

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

Did you mean: is_disabled
2019 Apr 17
1
Fix: hotkey uppercasing too wide
...entry = cm->menu_hotkeys[key]->entry; --- syslinux-6.03/com32/menu/readconfig.c.orig 2019-04-17 11:53:15.794263379 -0500 +++ syslinux-6.03/com32/menu/readconfig.c 2019-04-17 12:13:43.549878848 -0500 @@ -279,7 +279,7 @@ static void consider_for_hotkey(struct m if (me->action != MA_DISABLED) { if (p && p[1]) { - unsigned char hotkey = p[1] & ~0x20; + unsigned char hotkey = p[1] & ((hotkey & 0xE0) == 0x60 ? ~0x20 : 0xFF); if (!m->menu_hotkeys[hotkey]) { me->hotkey = hotkey; m->menu_hotkeys[hotkey] = me; *Patch limitation* Six non-lett...
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