similar to: Fix for the mem= kernel option

Displaying 20 results from an estimated 200 matches similar to: "Fix for the mem= kernel option"

2005 Feb 22
1
makebootfat: an utility to create bootable USB disks
Only to inform that I've just released the version 1.2 of makebootfat. makebootfat is a GPL command line utility able to create bootable USB disks for Linux and Windows using the FAT filesystem and syslinux. As far I know it's the most advanced tool available able to make bootable USB disks. It's able to autodetect/partition/format/populate the USB disk in a single step without any
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 ==
2005 Jan 17
2
Slow performance booting USB device with 3.xx version
With the new 3.01 and 3.07 version I found a big slowdown booting from USB devices. On my PC it takes more than 2 minutes to load the kernel and the initrd filesystem. Compared with the previous behaviour of syslinux 2.13 with takes only 10 seconds or little more. The BIOS boots in FDD mode (DriveNumber variable is 0). I've also tried to disable the EDD support in the source. But the boot
2005 Jan 22
0
mkisofs for Windows and 2 GB limitation
I have some users reporting problems creating isolinux bootable DVD bigger than 2 GB in Windows. The resulting DVD doesn't boot. I've found this problem also mentioned in some forums, but I wasn't able to find a mkisofs binary for Windows without this bug. Please note that this isn't a problem of isolinux. Creating the same DVD with a recent mkisofs in Linux results in a
2004 Jun 12
0
Possible source problem in 2.10-pre5
Only to signal that in version 2.10-pre5 the "Out of memory, better reorganize something..." message is commented out. This is a diff extract from 2.09 to 2.10-pre5 : diff -u syslinux-2.09/ldlinux.asm syslinux-2.10-pre5/ldlinux.asm --- syslinux-2.09/ldlinux.asm 2004-04-23 06:14:15.000000000 +0200 +++ syslinux-2.10-pre5/ldlinux.asm 2004-05-30 00:11:23.000000000 +0200 @@
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 @@
2008 Jul 22
2
[PATCH 1/3] Fix loading of *.lkrn images from gPXE
Attempts to load *.lkrn images were failing with "Not enough memory to load specified image". These images have the su_ramdisk_max header field set to zero, and the code in core/runkernel.inc was limiting MyHighMemSize too early (before the load_high call used to load the main part of the kernel). Signed-off-by: Sergey Vlasov <vsu at altlinux.ru> --- core/runkernel.inc | 13
2006 Mar 20
1
can't compil
Hello! Why isolinux.asm is not compil? isolinux.asm:304: error: short jump is out of range isolinux.asm:307: error: short jump is out of range isolinux.asm:788: error: symbol `DATE_STR' undefined ui.inc:26: error: short jump is out of range ui.inc:30: error: short jump is out of range ui.inc:64: error: short jump is out of range ui.inc:88: error: short jump is out of range ui.inc:117: error:
2005 Jul 07
0
pxelinux and DISPLAY
Hey, I just wanted to mention that the same problem still exists for me in version 3.09, altough the changelog mentions: Reduce the command line to 511 characters; 1023 caused memory overflows. Was this meant to be a solution for this problem, or does this entry of the changelog apply to another bug? thx, marco >Yesterday Curtis Doty said: > > > >>I've begun
2013 Feb 21
0
[PATCH 1/4] purgatory: put variables altered by kexec in .data not .bss
From: David Vrabel <david.vrabel@citrix.com> elf_rel_set_symbol() fails if the symbol is in the .bss section. Signed-off-by: David Vrabel <david.vrabel@citrix.com> --- purgatory/arch/i386/console-x86.c | 6 +++--- purgatory/arch/i386/crashdump_backup.c | 8 +++++--- purgatory/arch/x86_64/purgatory-x86_64.c | 6 +++--- purgatory/include/purgatory.h | 4
2011 Mar 06
1
[PATCH] core: Fix 'trackbuf' descriptor list byte length
(Tested using a Linux bzImage, with and without an initrd.) Per shuffle_and_boot documentation, %ecx must contain the descriptor list byte length, but it's set with such list end address instead. Fix. Signed-off-by: Ahmed S. Darwish <darwish.07 at gmail.com> -- core/bcopy32.inc | 2 ++ core/bcopyxx.inc | 2 ++ core/bootsect.inc | 8 +++++--- core/runkernel.inc |
2006 Jun 27
1
Build on Linux / Messages nasm error: short jump is out of range
Hi, trying to build syslinux on Linux. Please help. bash-2.05b$ uname -a Linux bongo 2.4.32-ARXc3 COHERENT #4-ARX (Build 2660) Sun May 21 15:35:22 CEST 2006 i686 i686 i386 GNU/Linux bash-2.05b$ BUILD/syslinux-3.11/opt/nasm-0.98.38-2/bin/nasm -version NASM version 0.98.38 compiled on Jun 26 2006 But failed with: + make NASM=/home/axel/p/rpm/BUILD/syslinux-3.11/opt/nasm/bin /nasm
2010 May 19
3
[PATCH] com32/lib/syslinux/load_linux.c: cmdline truncated
Hi, in syslinux-386, I think I've found a problem in com32/lib/syslinux/load_linux.c that leads to cmdline being truncated unnecessarily when e.g. linux.c32 is used. The patch below fixes the problem for me. But I don't know, whether the patch is safe in all cases. I tried to reproduce the logic found in runkernel.inc, but I might have missed something. So, feel free to tell me
2005 Aug 22
0
extending ldlinux.sys to ask for a password
Harald Milz wrote: > Hi, > > the USB boot I was just talking about is a test bed for booting a system > with all filesystems including root encrypted with cryptsetup-LUKS. I am > experimenting with various bootloaders to ask for a password. Booting the > box from the harddisk with GRUB works fine, it requires a little patch for > grub and the kernel. > > The mechanism
2009 Oct 13
2
isolinux problem since 3.74
I'm working on getting the latest Linux distros working well on one of our prototype machines, however, some of them are failing to boot into the installer from the CD/DVD images. I've narrowed it down to isolinux hanging just before displaying the graphical menu. After a little bisecting between the last version that worked (3.73) and the first version which was broken (3.74), I found
2012 Jul 01
1
[PATCH] elflink: fix return from execute()
Fix return from execute() if type == KT_NONE. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> --- com32/elflink/ldlinux/execute.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/com32/elflink/ldlinux/execute.c b/com32/elflink/ldlinux/execute.c index f713eb1..899154c 100644 --- a/com32/elflink/ldlinux/execute.c +++ b/com32/elflink/ldlinux/execute.c @@ -108,7
2009 Apr 27
3
Question about vk_check and rllunpack
I am hitting a problem on syslinux-3.80-pre1-2-g6c0fb9e (only last label in config file is found), but don't want to "cry wolf" (again), so let's start with a question: ui.inc: ; ; Now check if it is a "virtual kernel" ; vk_check: mov esi,[HighMemSize] ; Start from top of memory .scan: cmp esi,[VKernelEnd] jbe
2008 Aug 31
1
[RFC][PATCH] ui: label completion on tab key
This implements the label completion on tab key idea. It does introduce "labelcompl" as new config keyword. The default value is 0 so it does not change current behaviour. If you press tab with an empty command line it will display all labels. If the command line contains any characters it will display the matching labels. This patch is only intended for testing since i didn't check
2007 Aug 25
0
Unable to boot from USB CD-ROM on AMD Geode LX800
I'm trying to build a bootable CD for an Advantech PCM-4153 board (based on an AMD Geode LX800) that will allow to boot from USB CD-ROM drive. I've created an ISO that will load ISOLINUX (3.51) and appears to load the kernel and initrd images, but reboots the system when it tries to run the kernel. When I use either isolinux.bin and isolinux-debug.bin, the last messages I see on screen