Displaying 12 results from an estimated 12 matches for "allowimplicit".
2019 Apr 22
1
Bug/limitation: allowoptions (for label), implicit (for automated)
...s above: OPT currently passed regardless of allowoptions
*Example (prompt) current*
kernelX OPT
# OPT not passed with allowoptions 0 (fully blocked with IMPLICIT 0)
labelX OPT
# OPT currently passed regardless of allowoptions
For the default/ifcpu case, it would make sense to ignore allowoptions, allowimplicit as the commands are from the configuration file. And for the prompt case, it would make sense to enforce allowoptions to both commands and apply allowimplicit to the implicit kernel invocation.
*Example (default) proposed*
default kernelX OPT
# invoked as is regardless of allowoptions and allowimp...
2008 Aug 31
1
[RFC][PATCH] ui: label completion on tab key
....000000000 +0200
+++ syslinux-3.71-27-g3d39943/core/parseconfig.inc 2008-08-31 22:45:28.000000000 +0200
@@ -463,6 +463,7 @@
CmdLinePtr dw cmd_line_here ; Command line advancing pointer
ForcePrompt dw 0 ; Force prompt
NoEscape dw 0 ; No escape
+LabelCompl dw 0 ; Label completion on TAB key
AllowImplicit dw 1 ; Allow implicit kernels
AllowOptions dw 1 ; User-specified options allowed
2003 Dec 27
0
2 disks boot patch
...trd_flag equ $
initrd_ptr dw 0 ; Initial ramdisk pointer/flag
+; begin - freddy77
+
+change_disk_msg db 'Insert disk #'
+initrd_span db 0
+ db ' and press a key', CR, LF, 0
+
+; end - freddy77
VKernelCtr dw 0 ; Number of registered vkernels
ForcePrompt dw 0 ; Force prompt
AllowImplicit dw 1 ; Allow implicit kernels
SerialPort dw 0 ; Serial port base (or 0 for no
serial port)
VGAFontSize dw 16 ; Defaults to 16 byte font
UserFont db 0 ; Using a user-specified font
ScrollAttribute db 07h ; White on black (for
text mode)
;
; Stuff for the command li...
2003 Dec 27
0
FW: 2 disks boot patch
...trd_flag equ $
initrd_ptr dw 0 ; Initial ramdisk pointer/flag
+; begin - freddy77
+
+change_disk_msg db 'Insert disk #'
+initrd_span db 0
+ db ' and press a key', CR, LF, 0
+
+; end - freddy77
VKernelCtr dw 0 ; Number of registered vkernels
ForcePrompt dw 0 ; Force prompt
AllowImplicit dw 1 ; Allow implicit kernels
SerialPort dw 0 ; Serial port base (or 0 for no
serial port)
VGAFontSize dw 16 ; Defaults to 16 byte font
UserFont db 0 ; Using a user-specified font
ScrollAttribute db 07h ; White on black (for
text mode)
;
; Stuff for the command li...
2004 Oct 07
1
x86 vs. x86_64 detection proof of concept patch (try two)
...kernel
+kernel64
label
localboot
prompt
diff -u syslinux-2.11/keywords.inc syslinux-2.11.new/keywords.inc
--- syslinux-2.11/keywords.inc 2004-05-29 16:11:23.000000000 -0600
+++ syslinux-2.11.new/keywords.inc 2004-10-04 17:33:55.000000000 -0600
@@ -52,6 +52,7 @@
keyword implicit, pc_setint16, AllowImplicit
keyword kbdmap, pc_filecmd, loadkeys
keyword kernel, pc_kernel
+ keyword kernel64, pc_kernel64
keyword label, pc_label
keyword prompt, pc_setint16, ForcePrompt
keyword say, pc_say
Common subdirectories: syslinux-2.11/memdisk and
syslinux-2.11.new/memdisk
Common...
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
...00000 -0500
@@ -46,6 +46,7 @@
keyword menu, pc_comment
keyword append, pc_append
keyword default, pc_default
+ keyword default64, pc_default64
keyword display, pc_filecmd, get_msg_file
keyword font, pc_filecmd, loadfont
keyword implicit, pc_setint16, AllowImplicit
diff -ur syslinux-3.31.orig/kwdhash.gen syslinux-3.31/kwdhash.gen
--- syslinux-3.31.orig/kwdhash.gen 2006-09-26 00:52:27.000000000 -0400
+++ syslinux-3.31/kwdhash.gen 2007-01-03 15:17:26.000000000 -0500
@@ -1,6 +1,7 @@
hash_menu equ 0x003719b5
hash_append equ 0xc5399...
2011 Apr 01
1
[GIT PULL] elflink ldlinux
The following changes since commit 8c576f1fe03e34879921311f46613a35c6530000:
Merge remote-tracking branch 'mfleming/for-hpa/elflink/fix-compiler-warnings' into elflink (2011-03-16 12:53:58 -0700)
are available in the git repository at:
git://git.zytor.com/users/mfleming/syslinux.git for-hpa/elflink/ldlinux
Matt Fleming (1):
ldlinux: Perform auto-boot if NOESCAPE set in config
2012 May 04
3
[GIT PULL] elflink fixes
...r *apply_extension(const char *kernel, const char *ext)
/* Copy the rest of the command line */
strcpy(k + len + elen, p);
- k[len + elen] = '\0';
+ k[len + elen + strlen(p)] = '\0';
return k;
}
@@ -164,6 +164,12 @@ static void load_kernel(const char *command_line)
if (!allowimplicit)
goto bad_implicit;
+ /* Insert a null character to ignore any user-specified options */
+ if (!allowoptions) {
+ char *p = (char *)find_command(kernel);
+ *p = '\0';
+ }
+
type = parse_kernel_type(kernel);
if (type == KT_KERNEL) {
const char *ext;
@@ -209,16 +215,12 @@ static...
2002 Feb 26
0
syslinux timeout
...-------------------------------------
FKeyMap dw 0 ; Bitmap for F-keys loaded
CmdLinePtr dw cmd_line_here ; Command line advancing pointer
initrd_flag equ $
initrd_ptr dw 0 ; Initial ramdisk pointer/flag
VKernelCtr dw 0 ; Number of registered vkernels
ForcePrompt dw 0 ; Force prompt
AllowImplicit dw 1 ; Allow implicit kernels
SerialPort dw 0 ; Serial port base (or 0 for no serial port)
A20List dw a20_dunno, a20_none, a20_bios, a20_kbc, a20_fast
A20DList dw a20d_dunno, a20d_none, a20d_bios, a20d_kbc, a20d_fast
Binary files ../syslinux-1.67/ldlinux.bin and ./ldlinux...
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com>
The following patch series is available at,
git://git.zytor.com/users/mfleming/syslinux.git elflink
All patches are against the 'elflink' branch.
This series fixes a few serious bugs and some behavioural
incompatibilities with the 4.x series.
Matt Fleming (19):
ldlinux: Initialise 'p' before using it.
ldlinux: Parse
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 May 25
1
[GIT PULL] elflink ldlinux
Hi,
These patches contain support for some features that are already in
Syslinux 4 but weren't working properly on the elflink branch. It's
another step closer to feature parity with Syslinux 4.
Having to jump through the comboot API for localboot support is less
than ideal and I'll eventually fix that, probably when we move a big
chunk of code from asm to C.
Also, there's a