search for: get_msg_file

Displaying 5 results from an estimated 5 matches for "get_msg_file".

2004 Sep 11
1
serial vs console and serialonly
...x/syslinux.patch This patch works, but appears to turn off the console unconditionally. I went to see how it would fit in 2.11, and it seems youve already started adding this feature. If so great, but how do I control it from a config-file ? I didnt see any new keywords. Also, it appears that get_msg_file: writes to both serial & console unconditionally, is that your intent ? mov byte [DisplayMask],07h ; Display text in all modes Also, Im seeing a possible bug in 2.06 wrt a global APPEND not being overridden by a specific KERNEL line (sorry for vagueness, Ill check more...
2002 Feb 26
0
syslinux timeout
...eout: call getint ; "showtimeout" command + jc parse_config_2 + mov [ShowTimeOut],bx + jmp short parse_config_2 +; DTM END -------------------------------------------------- + pc_display: call pc_getfile ; "display" command jz parse_config_2 ; File not found? call get_msg_file ; Load and display file parse_config_2: jmp parse_config pc_prompt: call getint ; "prompt" command jc parse_config_2 mov [ForcePrompt],bx jmp short parse_config_2 @@ -1454,22 +1468,25 @@ ; ; Check whether or not we are supposed to display the boot prompt. ; check_for...
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
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
....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:27.000000000 -0400 +++ syslinux-3.31/kwdhash.gen 2007-01-03 15:17:26.000000000 -0500...
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...ather similar, open a file then do sth */ else if (looking_at(p, "display")) { - char *filename, *dst = KernelName; + const char *filename; + char *dst = KernelName; size_t len = FILENAME_MAX - 1; filename = refstrdup(skipspace(p + 7)); @@ -1133,7 +1134,8 @@ do_include: get_msg_file(KernelName); refstr_put(filename); } else if (looking_at(p, "font")) { - char *filename, *dst = KernelName; + const char *filename; + char *dst = KernelName; size_t len = FILENAME_MAX - 1; filename = refstrdup(skipspace(p + 4)); @@ -1145,8 +1147,8 @@ do_include: loadfon...