search for: nocomplet

Displaying 11 results from an estimated 11 matches for "nocomplet".

Did you mean: nocomplete
2008 Aug 31
1
[RFC][PATCH] ui: label completion on tab key
This implements the label completion on tab key idea. It does introduce "labelcompl" as new config keyword. The default value is 0 so it does not change current behaviour. If you press tab with an empty command line it will display all labels. If the command line contains any characters it will display the matching labels. This patch is only intended for testing since i didn't check
2016 Aug 13
1
syslinux synonym for the "restricted" option of lilo?
On Tue, Aug 9, 2016 at 12:36 PM, Gene Cumm <gene.cumm at gmail.com> wrote: > > Look at "MENU MASTER PASSWD". It'll block [Esc] (to exit menu) and > [Tab] (to edit an entry). It has a different design but might work > for your goals. > Good idea! Menu master passwd with/without menu passwd in syslinux work just like the mandatory/restricted passwd in lilo.
2014 Dec 03
0
vesamenu back to text before booting
On Dec 3, 2014 3:54 AM, "Thorsten Glaser" <t.glaser at tarent.de> wrote: > > On Tue, 2 Dec 2014, H. Peter Anvin wrote: > > > This is the default unless the "quiet" option is set. > > Hmm. > It does not switch back to text mode when chaining to > https://www.mirbsd.org/MirOS/current/i386/boot renamed > to "pxebsd.0" (used to be
2014 May 07
0
Issues with syslinux_run_command(str) and parameters
.... > > -hpa > As common user, my understanding of the relevant global directives is: _ PROMPT: Whether (or not) to directly execute the DEFAULT (or UI if present) directive. _ NOESCAPE: Whether (or not) to allow the usage of the [ESC / SHIFT / ALT / CAPS LOCK / SCROLL LOCK] keys. _ NOCOMPLETE: Whether (or not) to allow the TAB key to display predefined labels in the command line. _ IMPLICIT: Whether (or not) to limit the execution of commands to predefined labels only. _ALLOWOPTIONS: Whether (or not) to allow the user to change (add/edit/erase) the command line _arguments_. There a...
2011 Apr 01
0
[GIT PULL] elflink cmdline
...#include "config.h" static jmp_buf timeout_jump; @@ -394,6 +395,26 @@ const char *edit_cmdline(const char *input, int top /*, int width */ , redraw = 1; } break; + case KEY_TAB: + { + const char *p; + size_t len; + + /* Label completion enabled? */ + if (nocomplete) + break; + + p = cmdline; + len = 0; + while(*p && !my_isspace(*p)) { + p++; + len++; + } + + print_labels(cmdline, len); + redraw = 1; + break; + } default: if (key >= ' ' && key <= 0xFF && len < MAX_CMDLINE_LEN...
2014 May 07
2
Issues with syslinux_run_command(str) and parameters
>> >> >From the perspective of a final user, breaking the prior behavior of >> directives needs to have very clear advantages. > > Reviewing the commit history, I would say that the prior behavior is currently broken. > > The ALLOWOPTIONS feature was added in 2004: >
2014 Dec 03
4
vesamenu back to text before booting
On Tue, 2 Dec 2014, H. Peter Anvin wrote: > This is the default unless the "quiet" option is set. Hmm. tglaser at luna:/srv/tftp $ fgrep -ri quiet . Binary file ./hdt.c32 matches Binary file ./ldlinux.c32 matches Binary file ./vmlinuz matches Binary file ./linux.c32 matches Binary file ./debian-installer/jessie/amd64/linux matches Binary file ./debian-installer/jessie/i386/linux
2010 Jul 15
1
Accessing command_line from core C code
...and_line resb max_cmd_len+2 ; Command line buffer alignb 4 default_cmd resb max_cmd_len+1 ; "default" command line diff --git a/core/ui.inc b/core/ui.inc index 2d44447..3e28dac 100644 --- a/core/ui.inc +++ b/core/ui.inc @@ -150,44 +150,8 @@ set_func_flag: display_labels: cmp word [NoComplete],0 ; Label completion enabled? jne get_char_2 - push di ; Save pointer - mov cx,di - sub cx,command_line - call crlf - mov esi,[HighMemSize] ; Start from top of memory -.scan: - cmp esi,[VKernelEnd] - jbe .not_vk - - push cx ; save command line size - - mov edi,VKernelBuf - pm...
2008 Sep 26
3
SYSLINUX 3.72 released
...solinux.txt for more information. * Remote gdb support for COM32 modules; patch from Stefan Hajnoczi. * Support beeps in F-key help in the simple menu system. * Tab display of labels, based on a patch from Sebastian Herbszt. Can be disabled with the NOCOMPLETE configuration command. * "menu default" can now be specified after "menu begin", to indicate that a specific submenu should be the default entry. Begin3 Title: syslinux Version: 3.72 Entered-date: 2008-09-25 Description: SYS...
2019 Apr 12
1
RFC: Feature: MENU HIDDEN behaviour on ANY key
> Le 11 avr. 2019 ? 14:48, Ady Ady via Syslinux <syslinux at syslinux.org> a ?crit : > > >> Hello, >> >> Here's a small enhancement feature for menu.c32. Looking for feedback before >> starting any coding (not sure when I'll have time for implementation) >> >> Regards, >> Dany St-Amant >> >> >> *Problem
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