similar to: gfxboot for PXElinux

Displaying 20 results from an estimated 100000 matches similar to: "gfxboot for PXElinux"

2008 Mar 16
1
GFXBoot & PXELinux
I understand the reasoning behind not integrating the dirty gfxboot patch into isolinux and pxelinux, but with many of the major distributions implementing gfxboot, it would be nice for a seamless boot interface across syslinux, isolinux and pxelinux so that the same menu file, look and feel, can be used to boot from the hard drive, USB thumb drive, floppy, or PXE. With isolinux being the primary
2009 Jul 15
1
[PATCH] gfxboot: remove obsolete message regarding pxelinux support
PXELINUX is supported by the gfxboot module. 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 @@ -968,7 +968,6 @@ msg_missing db 'missing',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 +++
2004 May 29
8
arrow-driven menu with pxelinux.0?
Hello! Is there a way to make an arrow-driven menu with pxelinux? Cheers Alex
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 Apr 09
2
[PATCH] gfxboot: support MENU LABEL statement
The config file parser now accepts MENU LABEL. Also, make config statements case-insensitive. Signed-off-by: Steffen Winterfeldt <wfeldt at opensuse.org> --- com32/gfxboot/gfxboot.c | 69 ++++++++++++++++++++++++++++++++++------------- 1 files changed, 50 insertions(+), 19 deletions(-) diff --git a/com32/gfxboot/gfxboot.c b/com32/gfxboot/gfxboot.c index bfdd8cc..640422b 100644 ---
2013 Jul 03
2
Problems with gfxboot.c32
Matt Fleming wrote: > On Wed, 03 Jul, at 03:02:19PM, Andreas Heinlein wrote: >> I had to add at least one boot entry to get a working config, so I >> ended up with this isolinux.cfg: >> >> label live >> menu label ^Try Ubuntu without installing >> kernel /casper/vmlinuz >> append file=/cdrom/preseed/ubuntu.seed boot=casper >>
2013 Jul 03
2
Problems with gfxboot.c32
Am 03.07.2013 14:11, schrieb Matt Fleming: > On Wed, 03 Jul, at 12:22:52PM, Andreas Heinlein wrote: >> Hello, >> >> I am currently trying to get the gfxboot archive from Ubuntu 12.04 >> working with gfxboot.c32 under BIOS, using ISOLINUX 6. >> >> AFAIK, the Ubuntu patches have been added in 4.03, and in fact it >> works with the official 4.05 release,
2009 Jul 15
0
[PATCH] gfxboot: only call gfxboot core if labels are specified
Only call gfxboot core if labels are specified in the config file. 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 @@ -144,7 +144,15 @@ got_config_file:
2010 Dec 03
1
Chainloading / Nested PXELINUX [SOLVED]
I was able to solve the problem with the following configuration: label custom1 MENU custom1 kernel pxechain.com append ::custom1/pxelinux.0 label custom2 MENU custom2 kernel pxechain.com append ::custom2/pxelinux.0 configdir1/pxelinux.cfg/default configdir2/pxelinux.cfg/default Then I dropped the custom pxelinux.0 files in their respective directories, confgdir1 and configdir2. On Tue, Nov
2013 Jul 03
0
Problems with gfxboot.c32
On Wed, 03 Jul, at 03:02:19PM, Andreas Heinlein wrote: > I had to add at least one boot entry to get a working config, so I > ended up with this isolinux.cfg: > > label live > menu label ^Try Ubuntu without installing > kernel /casper/vmlinuz > append file=/cdrom/preseed/ubuntu.seed boot=casper > initrd=/casper/initrd.lz quiet splash -- > menu background
2009 Jul 15
0
[PATCH] gfxboot: display error message if bootlogo file not found
Display an error message if the user specified bootlogo file is not found. 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 @@ -417,6 +417,14 @@ gfx_read_file:
2013 Feb 28
3
[PXELinux 5.01] BUG: "unable to locate configuration file" if directory tftpboot/syslinux exists
Hi, I'm using PXELinux (on Windows NT5.x, with Windows NT5.x tftpd and the PXE server included in the "Windows XP Embedded Remote Boot Server"). This works well here since more than 10 years now. Recently I created a subdirectory "syslinux" in my "tftpboot" ... and PXELINUX failed with the message "unable to locate configuration file". Renaming that
2009 Oct 29
5
[PATCH] gfxboot.c32
Ok, here is the first try to turn the gfxboot wrapper into a com32 module. I had to extend the interface to the gfxboot core a bit to get it working. So it works only with latest gfxboot from git://gitorious.org/gfxboot/gfxboot.git Steffen -------------- next part -------------- A non-text attachment was scrubbed... Name: gfxboot_c32.diff.gz Type: application/x-gzip Size: 7220 bytes Desc: URL:
2013 Apr 02
1
Problem with pxelinux 5.0 and memtest
Hi there, ----- Original Message ----- From: koxudaxi at gmail.com To: syslinux at zytor.com Date: 01.04.2013 10:00:27 Subject: Re: [syslinux] Problem with pxelinux 5.0 and memtest > On 04/01/2013 09:28 AM, H. Peter Anvin wrote: >> On 03/31/2013 05:26 PM, Koudai Aono wrote: >>> I ran the test on a x86 emulator is called Oracle VirtualBox. >>> I think it might not be
2011 Nov 02
3
Some bugs on gfxboot.c32
While playing with the current master of Syslinux, I figured out two bugs I'd like to share with you. 1- Missing menu entires If you consider a file with the following entries, only the first item appears label mga32 kernel anything label mga64 kernel anything Looks like the number at the end of the label is giving some headaches to gfxboot. If I do rename this two entries by
2019 Sep 03
1
Sporadic duplicate requests with lpxelinux.0
Hello, I am seeing sporadic duplicate read requests from lpxelinux.0 (6.03 from kernel.org), which results in a failed PXE boot. This happens only sporadic, but happens often enough to be annoying. The TFTP server serving lpxelinux.0 is running CentOS 7.6 with all updates applied. The client machine initiates the PXE boot, receives the lpxelinux.0 binary, downloads ldlinux.c32 and proceeds to
2007 Nov 07
1
I'd like to eventually support network console, at least in pxelinux.
H. Peter Anvin hpa at zytor.com Thu Jun 3 00:09:30 PDT 2004 Previous message: [syslinux] gfxboot for PXElinux Next message: [syslinux] chainload cdrom Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] I've been thinking about the whole gfxmenu thing, and I'm rather interested in
2015 Sep 22
0
Chaining to pxelinux.0 6.0.3 from iPXE - ldlinux.c32
On Mon, Sep 21, 2015 at 8:02 PM, Alan Sparks <asparks at doublesparks.net> wrote: > On 9/21/2015 5:44 PM, Gene Cumm wrote: >> On Mon, Sep 21, 2015 at 6:23 PM, Alan Sparks via Syslinux >>> With pxelinux 3.8.6 (or, < 5.x), I was able to chain boot pxelinux.0 >>> from ipxe, having set appropriate values for DHCP options 210 and 209 >>> for the remote file
2012 Nov 23
1
[PATCH] nictype.c32: PXELINUX module to display UNDI NIC bus type...
Applies to Syslinux 4.06. Attached, below, and available at: Repository: git://git.zytor.com/users/sha0/syslinux.git Branch: nictype - Shao Miller ----- From 2764e260e12d9769e3b699e4213b9a164e64924a Mon Sep 17 00:00:00 2001 From: Shao Miller <sha0.miller at gmail.com> Date: Thu, 22 Nov 2012 20:43:25 -0500 Subject: [PATCH] nictype.c32: PXELINUX module to display UNDI NIC bus