Displaying 11 results from an estimated 11 matches for "shiftkey".
2014 Jun 09
0
menu shiftkey directive
Hello Peter,
After some tests with MENU SHIFTKEY with different versions of
Syslinux, I came to the conclusion that, at least for now, it would
be better to undo commit:
<http://git.zytor.com/?p=syslinux/syslinux.git;a=commit;h=7e7139788c8a
c6ffbf474976ad4d1727e0677b9f>
"ldlinux: Allow a held shift key to override UI as well as...
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...we send ESC followed by the key's normal
+ // code. But we don't want to do this when ALT-GR is pressed.
+ if (ev.altKey && !ev.ctrlKey) {
+ k = String.fromCharCode(27)+k;
+ }
+
+// alert("keypress keyCode="+ev.keyCode+" which="+ev.which+
+// " shiftKey="+ev.shiftKey+" ctrlKey="+ev.ctrlKey+" altKey="+ev.altKey);
+
+ process_key(k);
+
+ key_ev_stop(ev);
+ return false;
+}
+
+
+function keydown(ev) {
+ if (!ev) var ev=window.event;
+
+ // alert("keydown keyCode="+ev.keyCode+" which="+ev.which+
+ //...
2012 May 04
3
[GIT PULL] elflink fixes
...ot; command line
const char *onerror = NULL; //"onerror" command line
+const char *ontimeout = NULL; //"ontimeout" command line
/* Empty refstring */
const char *empty_string;
@@ -79,6 +80,7 @@ struct menu *root_menu, *start_menu, *hide_menu, *menu_list, *default_menu;
int shiftkey = 0; /* Only display menu if shift key pressed */
int hiddenmenu = 0;
long long totaltimeout = 0;
+unsigned int kbdtimeout = 0;
/* Keep track of global default */
static int has_ui = 0; /* DEFAULT only counts if UI is found */
@@ -1081,13 +1083,14 @@ do_include:
//dprintf("got a ker...
2019 Apr 11
3
RFC: Feature: MENU HIDDEN behaviour on ANY key
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 statement*
When MENU HIDDEN is used on an headless server, any noise on the serial console can interrupt the boot; it would be preferable if there only specific keys were allowed to interrupt, reducing
2019 Apr 11
0
RFC: Feature: MENU HIDDEN behaviour on ANY key
...only specific
> keys were allowed to interrupt, reducing the probability of unwanted
> interruption. Even with TOTALTIMEOUT present, there's a delay present as
> TOTALTIMEOUT has to be large enough to make it useable during intentional boot
> interruption.
Sounds like 'MENU SHIFTKEY' would be useful for your case.
>
> *Basic behaviour change*
>
> Provide a way to assign "reveal menu" to specific key(s)
One possible alternative would be to separate the cfg, or at least to not
default to menu.c32. The initial cfg would use 'PROMPT 1' an...
2019 Apr 12
1
RFC: Feature: MENU HIDDEN behaviour on ANY key
...were allowed to interrupt, reducing the probability of unwanted
>> interruption. Even with TOTALTIMEOUT present, there's a delay present as
>> TOTALTIMEOUT has to be large enough to make it useable during intentional boot
>> interruption.
>
>
> Sounds like 'MENU SHIFTKEY' would be useful for your case.
I have to admit that I did not tried MENU SHIFTKEY. I simply assumed that this option was not going to work over serial connection. As these keys are not supposed to send keystroke over serial.
>> *Basic behaviour change*
>>
>> Provide a way...
2006 Jan 07
0
SYSLINUX 3.20-pre4 pushed out
This prerelease should hopefully fix the handing of "ontimeout" with a
label in menu.c32. It also adds the "menu shiftkey" command (so far
undocumented), which only displays the menu if Shift/Alt/Caps/Scroll is
set. Note that means it's not possible to display the menu on a serial
console!
-hpa
2014 Apr 19
0
Some behaviors observed in recent versions
...ot;boot:" prompt.
9_ Testing the behavior of the SHIFT / ALT / CAPS LOCK / SCROLL LOCK
keys during boot time (so to bypass the default "PROMPT 0") in
Syslinux 6.03-pre10, all alternative keys fail. This bug is present
since version 5.00. Note that I have not tested the "MENU SHIFTKEY"
behavior, which is a different feature.
To be clear, I am not saying that the current behaviors are a problem
(except for the last test #9); I am just pointing them out.
Hopefully this email might be of interest for some user(s). In some
cases, users might just see a menu displayed agai...
2015 Jun 23
0
[patch] doc/menu.txt MENU RESOLUTION and others
...d to multiple keys by giving
- a comma-separated list of keys:
+ sensitive, so "A" and "a" can bind different commands. The
+ same command can be bound to different keys by giving a
+ comma-separated list of them:
menu hiddenkey A,a key_a_command
@@ -77,8 +80,8 @@
MENU SHIFTKEY
- Exit the menu system immediately unless either the Shift or Alt
- key is pressed, or Caps Lock or Scroll Lock is set.
+ Exit the menu system immediately unless either the Shift or the
+ Alt key is pressed, or Caps Lock or Scroll Lock is set.
MENU SEPARATOR
@@ -89,9 +92,8 @@
MENU LABEL lab...
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
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