Displaying 20 results from an estimated 800 matches similar to: "[PATCH] mboot using module path"
2008 Nov 10
2
[PATCH 1/1] COMBOOT API: Add get current working directory call to most
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add get current working directory call to most
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
Adds an API call to obtain the current working directory. EXTLINUX
will not return the correct value yet however SYSLINUX, ISOLINUX, and
PXELINUX will return the correct value. For the moment, EXTLINUX will
ONLY return
2009 Feb 08
1
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT; Try 2
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add calls for directory functions; Implement most only
for FAT (SYSLINUX).
Uses INT 22h AX= 001Fh, 0020h, 0021h and 0022h to prepare for the
COM32 C functions getcwd(), opendir(), readdir(), and closedir(),
respectively. INT22h, AX=001Fh will return a valid value for all
variants. INT22h, AX= 0020h, 0021h, and 0022h are only
2008 Dec 04
2
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add calls for directory functions; Implement most only
for FAT (SYSLINUX).
Uses INT 22h AX= 001Eh, 001Fh, 0020h and 0021h to prepare for the
COM32 C functions getcwd(), opendir(), readdir(), and closedir(),
respectively. INT22h, AX=001Eh will return a valid value for all
variants. INT22h, AX= 001Fh, 0020h, and 0021h are only
2008 Nov 03
1
[PATCH 1/1] COMBOOT: add get config file full name
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add get config full file name to SYSLINUX
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
Returns the full configuration file name. Int 22h AX 001Eh for now as
it appears that the COMBOOT API is designed to be strictly sequential.
The API gets extended but only implemented (for now) for SYSLINUX in
ldlinux.asm.
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:
2008 Nov 10
1
[PATCH 1/1] COMBOOT API: Add get current working directory call to most (revised)
From: Gene Cumm <gene.cumm at gmail.com>
COMBOOT API: Add get current working directory call to most (Revised)
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
---
Revised based on discussions on this list. Include trailing "/" on
SYSLINUX and ISOLINUX. Copy TFTP Prefix as-is in PXELINUX.
Initialize CurrentDirName to "./" in EXTLINUX (until a better solution
2010 Jul 27
2
[PATCH] core: remove HAS_LOCALBOOT
HAS_LOCALBOOT is set unconditionally in config.inc.
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
diff --git a/core/comboot.inc b/core/comboot.inc
index 59db7ec..d6f670c 100644
--- a/core/comboot.inc
+++ b/core/comboot.inc
@@ -723,13 +723,9 @@ comapi_idle:
;
; INT 22h AX=0014h Local boot
;
-%if HAS_LOCALBOOT
comapi_localboot:
mov ax,P_DX
jmp local_boot
-%else
2008 Jul 16
1
[PATCH] isolinux: rename CurDir to CurrentDir
ldlinux and extlinux are both using CurrentDir variable name.
Rename CurDir to make it consistent with those.
- Sebastian
Index: syslinux-3.71-pre7/core/isolinux.asm
===================================================================
--- syslinux-3.71-pre7.orig/core/isolinux.asm 2008-07-13 19:52:27.000000000 +0200
+++ syslinux-3.71-pre7/core/isolinux.asm 2008-07-13 19:53:11.000000000 +0200
@@
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
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
+++
2011 Apr 26
1
[syslinux:lwip] PXE Cleanups, allow for 128 open files
On Mon, Apr 25, 2011 at 11:51:44AM -0700, syslinux-bot for H. Peter Anvin wrote:
> Commit-ID: 9ca79e92e60dd243c60e257a2dc60ba7b3677f37
> Gitweb: http://syslinux.zytor.com/commit/9ca79e92e60dd243c60e257a2dc60ba7b3677f37
>
> PXE Cleanups, allow for 128 open files
>
<snip/>
> --- a/core/include/fs.h
> +++ b/core/include/fs.h
> @@ -11,12 +11,9 @@
> #include
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 @@
2004 Oct 07
1
x86 vs. x86_64 detection proof of concept patch (try two)
Greetings all,
Sorry, resending this with the attachment inline.
First of all, a disclaimer: Please forgive my horrible assembly code.
This is just a quick munging of code to achieve x86 versus x86_64
detection within pxelinux. So please look at it as a proof of concept
and not a real piece of code. :) For example it only works on pxelinux
and has no thought for extending it beyond simple x86
2013 Jun 12
0
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
>From f48d79be8c79241dd4635165e393683809edd823 Mon Sep 17 00:00:00 2001
From: Matt Fleming <matt.fleming at intel.com>
Date: Wed, 12 Jun 2013 13:04:44 +0100
Subject: [PATCH] PATH: Change the PATH directive syntax
In retrospect, choosing the colon character as the entry separator for
the PATH directive was not a smart move, as that character is also used
in TFTP-style paths. This conflict
2013 Jun 12
0
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
On 06/12/2013 09:40 AM, Matt Fleming wrote:
> On Tue, 11 Jun, at 03:54:21AM, H. Peter Anvin wrote:
>> On 06/11/2013 01:03 AM, Matt Fleming wrote:
>>> On Mon, 10 Jun, at 07:57:50AM, H. Peter Anvin wrote:
>>>> Either that or make the path a list rather than a string, using the
>>>> normal word separators when entered on the command line, a bit like the
2013 Jun 12
5
[5.10] PXE + dhcp opts 209, 210 and path issues in tftp/http
On Tue, 11 Jun, at 03:54:21AM, H. Peter Anvin wrote:
> On 06/11/2013 01:03 AM, Matt Fleming wrote:
> > On Mon, 10 Jun, at 07:57:50AM, H. Peter Anvin wrote:
> >> Either that or make the path a list rather than a string, using the
> >> normal word separators when entered on the command line, a bit like the
> >> (t)csh does. That is a bigger change but is probably
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 May 04
3
[RFC][PATCH] poweroff COMBOOT module
This module is able to power off a system via APM.
It was tested on QEMU, Bochs and VMware.
Possible usage:
TIMEOUT 3000
TOTALTIMEOUT 9000
ONTIMEOUT poweroff.com
- Sebastian
Index: syslinux-3.80-pre7/modules/poweroff.asm
===================================================================
--- /dev/null
+++ syslinux-3.80-pre7/modules/poweroff.asm
@@ -0,0 +1,86 @@
+ absolute 0
+pspInt20: resw 1
2011 Mar 21
1
[elflink] diskstart.inc:420: error: Sector 1 overflow by 5 bytes
Hi Feng,
I'm currently hitting the overflow in core/diskstart.inc on the elfink
branch where I see you changed the overflow check,
commit 2e91ec5f155f04aee878ed70a04fb5b15e40da3b
Author: Feng Tang <feng.tang at intel.com>
Date: Wed Jul 14 15:55:25 2010 +0800
elflink: a lot of core/fs merge
@@ -691,16 +798,22 @@ rl_checkpt equ $ ; Must be
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
I've been using syslinux on my own Linux recovery CDs for almost a year now,
and in that time I've found it useful to be able to automatically load a
64-bit-capable kernel if the CPU supports it.
I'd like to share my efforts and submit this patch for syslinux-3.31. It adds a
new config file keyword, 'default64', which overrides the default image if a
64-bit CPU is detected.