search for: pc_default

Displaying 4 results from an estimated 4 matches for "pc_default".

Did you mean: xc_default
2009 Jan 31
1
"UI" keyword, pc_default and getline
There is a problem with "pc_default" if the following is present in the config file (line order does matter): UI gfxboot.com init DEFAULT memtest "pc_default" is called on the "DEFAULT" keyword, but "getline" is skipped, so the code now tries to parse the keywords parameter. The config line should...
2008 Dec 14
1
New "UI" directive broken?
The new directive doesn't seem to work here. Looks like DefaultLevel is never changed: core/parseconfig.inc:pc_default: cmp ax,[DefaultLevel] core/parseconfig.inc:DefaultLevel dw 0 ; The current level of default core/ui.inc: cmp word [DefaultLevel],1 ; Active UI statement? - Sebastian diff --git a/core/parseconfig.inc b/core/parseconfig.inc index 2fb26fd..fcf18d9 1...
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
...x-3.31.orig/keywords.inc syslinux-3.31/keywords.inc --- syslinux-3.31.orig/keywords.inc 2006-09-26 00:52:22.000000000 -0400 +++ syslinux-3.31/keywords.inc 2007-01-03 14:02:38.000000000 -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...
2002 Feb 26
0
syslinux timeout
...hog some of high memory. Therefore, we load it at 7000:0000h and copy ; it before starting the Linux kernel. @@ -1198,20 +1201,24 @@ jz near no_config_file parse_config: call getkeyword jc near end_config_file ; Config file loaded cmp ax,'de' ; DEfault je pc_default cmp ax,'ap' ; APpend je pc_append cmp ax,'ti' ; TImeout je near pc_timeout + ; DTM BEGIN ------------------------------------------------ + cmp ax,'sh' ; Show timeout + je near pc_showtimeout + ; DTM END -------------------------------------------------...