Displaying 20 results from an estimated 200 matches similar to: "[PATCH] parsecmd: show keyword in err_noparm message"
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 be skipped in this case.
This could be fixed by converting
2009 Jul 13
0
[PATCH] gfxboot: change handling of keywords
Makes handling of keywords more flexible.
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
Index: syslinux-3.82-440-g6483c80/modules/gfxboot.asm
===================================================================
--- syslinux-3.82-440-g6483c80.orig/modules/gfxboot.asm
+++ syslinux-3.82-440-g6483c80/modules/gfxboot.asm
@@ -699,33 +699,39 @@ parse_config:
mov bx, msg_crlf
int 22h
2009 Jul 15
0
[PATCH] gfxboot: parse TIMEOUT keyword
Parse the TIMEOUT keyword from the config file and pass it to gfxboot core.
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
Index: syslinux-3.82-440-g6483c80/modules/gfxboot.asm
===================================================================
--- syslinux-3.82-440-g6483c80.orig/modules/gfxboot.asm
+++ syslinux-3.82-440-g6483c80/modules/gfxboot.asm
@@ -657,8 +657,7 @@ gfx_input:
2006 Jan 08
0
isolinux.cfg location
My point demonstrated from a snippet of isolinux.asm:
; -----------------------------------------------------------------------------
; Begin data section
; -----------------------------------------------------------------------------
section .data
boot_prompt db 'boot: ', 0
wipe_char db BS, ' ', BS, 0
err_notfound db 'Could not find kernel image: ',0
err_notkernel db
2009 Apr 09
0
[PATCH] gfxboot: parse DEFAULT keywork in syslinux config file
The gfxboot COM module currently ignores the DEFAULT entry set in
syslinux config file and always default to 0 instead. This patch parses
DEFAULT entries in the config file and set the default entry
accordingly.
Signed-off-by: Christophe Fergeau <cfergeau at mandriva.com>
---
modules/gfxboot.asm | 34 ++++++++++++++++++++++++++++++++--
1 files changed, 32 insertions(+), 2 deletions(-)
2009 Apr 05
3
[PATCH] Gfxboot COMBOOT module
This is the latest version of the gfxboot module. It's supposed to work on
all Syslinux derivatives.
I am not sure about the copyright notice and would appreciate any input.
- Sebastian
Index: syslinux-3.74-pre17-2-g2a9ddec/modules/Makefile
===================================================================
--- syslinux-3.74-pre17-2-g2a9ddec.orig/modules/Makefile
+++
2008 Nov 22
5
[RFC][PATCH] Gfxboot COMBOOT module
So here it is. Ugly and far from acceptable shape but nonetheless it seems to
work. Parts are borrowed from syslinux core and of course the gfxboot patch for
syslinux 3.63.
Syntax: gfxboot.com <bootlogo file>
- Sebastian
--- /dev/null 2007-09-21 23:50:58.000000000 +0200
+++ syslinux-3.73-pre6/modules/gfxboot.asm 2008-11-22 19:01:10.000000000 +0100
@@ -0,0 +1,883 @@
+ absolute 0
2010 Nov 26
1
[PATCH] new *br: Show handoff data
git://git.zytor.com/users/genec/syslinux.git
Branch handoff-mbr-for-hpa
This is a piece of code that can be used in place of a MBR or VBR/PBR
(master boot record; volume/partition) in order to examine the data
handed to the respective boot code. AX, SS, and SP are destroyed
before examining anything. I set an internal restriction that limits
it to 420 bytes such that it could be used with a
2010 Jul 15
1
Accessing command_line from core C code
I tried to replace display_labels asm code (ui.inc) with new C code (pm_display_labels),
but the data i access in command_line doesn't seem to be always up to date.
The patch i am working on is only for PXELINUX because of different vkernel structure:
diff --git a/core/com32.inc b/core/com32.inc
index 111590c..f19df7c 100644
--- a/core/com32.inc
+++ b/core/com32.inc
@@ -135,6 +135,7 @@
2003 Dec 27
0
2 disks boot patch
Well, with this simple patch I'm able to load initrd from a different
disk. It's not finished, it's just to ask you if I'm going in the right
direction...
I have also some suggestion/question:
- many boot sector I saw use [bp+xx] addressing to gain some bytes. Why
don't you use such method?
- had syslinux been tested with usb floppy? You test dl however using
usb floppy dl ==
2003 Dec 27
0
FW: 2 disks boot patch
Well, with this simple patch I'm able to load initrd from a different
disk. It's not finished, it's just to ask you if I'm going in the right
direction...
I have also some suggestion/question:
- many boot sector I saw use [bp+xx] addressing to gain some bytes. Why
don't you use such method?
- had syslinux been tested with usb floppy? You test dl however using
usb floppy dl ==
2015 Oct 05
0
[PATCH 2/4] Remove unused linker scripts
From: Sylvain Gault <sylvain.gault at gmail.com>
Some linker scripts were splitted into i386 and x86_64 versions in
commit d8eede3f2a360163235fad222a0190cd7c5bef38 but older scripts were
left there.
Signed-off-by: Sylvain Gault <sylvain.gault at gmail.com>
---
core/syslinux.ld | 414 ------------------------------------------------
core/x86_64/syslinux.ld | 389
2019 Jan 25
0
[klibc:update-dash] [PARSER] Simplify EOF/newline handling in list parser
Commit-ID: 807d37fa7f3b25884946c789ea6458f19647abf0
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=807d37fa7f3b25884946c789ea6458f19647abf0
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Tue, 28 Oct 2014 17:22:16 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Fri, 25 Jan 2019 02:57:21 +0000
[klibc] [PARSER] Simplify
2020 Mar 28
0
[klibc:update-dash] dash: [PARSER] Simplify EOF/newline handling in list parser
Commit-ID: a5a6a6ba303805417242138104643d8c40d71d00
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=a5a6a6ba303805417242138104643d8c40d71d00
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Tue, 28 Oct 2014 17:22:16 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:54 +0000
[klibc] dash: [PARSER]
2009 Jul 27
1
[PATCH] mboot using module path
Hi,
We are using pxelinux at my company to test our product. And there are
limitations
that we have hit in the past w.r.t. the max length of a path, or the
max length of a module
name (in mboot.c / mboot.c32). We've used workarounds in the past, and
reorganized the
directory structure, but we face that problem again. Out of the 128 /
FILENAME_MAX chars
that can be used, 110 - 120 go to the
2019 Jan 25
0
[klibc:update-dash] eval: Return status in eval functions
Commit-ID: ef5fd2060f3c7d1a4a22a079bc1c32b61964bb5f
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=ef5fd2060f3c7d1a4a22a079bc1c32b61964bb5f
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Tue, 7 Jun 2016 16:47:59 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Fri, 25 Jan 2019 02:57:21 +0000
[klibc] eval: Return status in
2020 Mar 28
0
[klibc:update-dash] dash: eval: Return status in eval functions
Commit-ID: 777b77571a451d5fc5dfc04749854ea40abe8093
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=777b77571a451d5fc5dfc04749854ea40abe8093
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Tue, 7 Jun 2016 16:47:59 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:54 +0000
[klibc] dash: eval: Return
2012 Oct 01
0
[klibc:master] Avoid overflow for very long variable name
Commit-ID: 127b17bb38dbfc95386a52b2159f059221d33497
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=127b17bb38dbfc95386a52b2159f059221d33497
Author: Jim Meyering <jim at meyering.net>
AuthorDate: Tue, 3 Jul 2012 17:32:33 +0800
Committer: maximilian attems <max at stro.at>
CommitDate: Mon, 1 Oct 2012 15:14:16 +0200
[klibc] Avoid overflow for very long
2019 Jan 25
0
[klibc:update-dash] eval: Fix exit status when calling eval/dot with no commands
Commit-ID: d431641e217fa4f75e63b8ee817dc97cda9a2976
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=d431641e217fa4f75e63b8ee817dc97cda9a2976
Author: Harald van Dijk <harald at gigawatt.nl>
AuthorDate: Tue, 7 Jun 2016 16:35:41 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Fri, 25 Jan 2019 02:57:21 +0000
[klibc] eval: Fix exit status when
2020 Mar 28
0
[klibc:update-dash] dash: eval: Fix exit status when calling eval/dot with no commands
Commit-ID: 54653f129781515d3eaff2aa26078ef376bc5a6f
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=54653f129781515d3eaff2aa26078ef376bc5a6f
Author: Harald van Dijk <harald at gigawatt.nl>
AuthorDate: Tue, 7 Jun 2016 16:35:41 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:54 +0000
[klibc] dash: eval: Fix exit