summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Stealth whitespace cleanup.syslinux-3.32-pre8H. Peter Anvin2006-12-124-10/+10
|
* Patch: Parse append arguments properly in mboot moduleRam Yalamanchili2006-12-121-2/+22
| | | | | | | | | | | | | | | | | | | | Hey guys, I noticed the appended ipappend options end up in the beginning of the cmdline argv[] when mboot is entered. mboot then tries to parse the first argument as the name of the kernel module and promptly fails cuz it can't find "ip=.." or "bootif=...". I'm attaching a patch which basically looks for any arguments in the argv[] array and appends them to the kernel cmdline. The arguments have to be back-to-back to be considered "appened options", so this should be safe enough to not take out-of-place arguments and tack onto the kernel cmdline. Last time i sent in some of the elf section loader patches, i think Peter had trouble importing time. Hopefully it works now. thanks, Ram Yalamanchili
* Merge with ↵syslinux-3.32-pre7H. Peter Anvin2006-11-211-8/+8
|\ | | | | | | git+ssh://master.kernel.org/pub/scm/boot/syslinux/syslinux.git#syslinux-3.3x
| * Resolve issue with push/pop ordering in raw mode.H. Peter Anvin2006-11-211-8/+8
| | | | | | | | Bug reported by James Ling.
* | memdisk: Update copyright dateH. Peter Anvin2006-11-131-1/+1
|/
* spec: handle variants of "i386" like "i686"syslinux-3.32-pre6H. Peter Anvin2006-11-011-4/+3
|
* menu system: handle console setup/cleanup differentlyH. Peter Anvin2006-11-014-2/+24
| | | | | | Handle console setup/cleanup explicitly, instead of relying on a destructor. The destructor doesn't get called on outbound API calls that don't return.
* NEWS: Document recent changessyslinux-3.32-pre5H. Peter Anvin2006-10-301-0/+3
|
* The simple menu system doesn't work with serial consolehiranotaka@zng.info2006-10-301-1/+2
| | | | | | | | | | | Hello, I have just get started using pxelinux, and encountered a problem. The document says the simple menu system supports serial console, and it works on syslinux 0.2x, but it doesn't seem to work in 0.3x and 0.4x. I confirmed that this patch fixed the bug. *** com32/lib/sys/xserial_write.c~ 2006-10-30 08:30:35.000000000 +0900
* memdisk: Constrain input drive numbers both by equipment byte and INT 13hsyslinux-3.32-pre4H. Peter Anvin2006-10-301-2/+20
| | | | | | Apparently on some BIOSes, INT 13h return a bogus number of floppy drives when the real value is zero (probably because the code doesn't check the validity bit in the equipment byte.) Do it ourselves if we need to.
* sha1pass: allow the user to specify an empty saltH. Peter Anvin2006-10-261-1/+3
|
* When chainloading, set ES:DI to point to the $PnP ICS if available.H. Peter Anvin2006-10-241-3/+32
| | | | | | Arguably these really should be kept from the original invocation instead of saved. This is doable for PXELINUX, but might be very hard to do for the disk-based ones. Think hard about it.
* memdisk: $PnP Installation Check structure length is byte 5, not 2H. Peter Anvin2006-10-241-3/+4
|
* [memdisk] Enable EDD support by default.syslinux-3.32-pre3H. Peter Anvin2006-10-202-2/+3
|
* Makefile cleanup to be able to build with CC='gcc -m32'syslinux-3.32-pre2H. Peter Anvin2006-10-173-24/+30
|
* Remove -x c from assembly preprocessingH. Peter Anvin2006-10-171-2/+2
|
* Remove -traditionalH. Peter Anvin2006-10-171-2/+2
|
* Set MAKEFLAGS to -r to suppress predefined rulesH. Peter Anvin2006-10-171-1/+4
|
* Move -m32 to CFLAGS as wellH. Peter Anvin2006-10-171-2/+2
|
* Move flags from CC to CFLAGSH. Peter Anvin2006-10-171-2/+2
|
* Document memdisk changesH. Peter Anvin2006-10-171-0/+1
|
* Merge with ↵H. Peter Anvin2006-10-178-47/+92
|\ | | | | | | git+ssh://master.kernel.org/pub/scm/boot/syslinux/syslinux.git#syslinux-3.3x
| * New TEXT..ENDTEXT statement for the benefit of the menu systemH. Peter Anvin2006-10-023-33/+62
| |
| * Official binaries are 32 bits. Clean up release vs prerel.H. Peter Anvin2006-10-021-10/+7
| |
| * Reduce verbosityH. Peter Anvin2006-10-021-2/+2
| |
| * Fix to "make tidy"H. Peter Anvin2006-10-021-1/+3
| |
| * vesainit: clear the VESA buffers before call (paranoia)H. Peter Anvin2006-09-301-0/+2
| |
| * vesainit: more careful detection of VESA modesH. Peter Anvin2006-09-301-2/+14
| |
| * Document new safeint mode.syslinux-3.32-pre1H. Peter Anvin2006-09-281-0/+3
| |
| * Next version on this branch: 3.32H. Peter Anvin2006-09-281-1/+1
| |
* | [memdisk] Saner handling of the values returned to the real-mode code.H. Peter Anvin2006-10-172-17/+18
| |
* | [memdisk] Make ES:DI point to the $PnP structure on entryH. Peter Anvin2006-10-172-7/+44
|/ | | | ES:DI is supposed to point to the $PnP structure on entry, make it sew.
* Add "safeint" mode to memdiskH. Peter Anvin2006-09-283-4/+56
|
* Try to be more true to the way "MENU INCLUDE" should work.syslinux-3.31-pre4syslinux-3.31H. Peter Anvin2006-09-221-6/+8
|
* Make the last row the end row.H. Peter Anvin2006-09-211-1/+1
|
* New MENU INCLUDE directive, and support ~ to mark default config file.syslinux-3.31-pre3H. Peter Anvin2006-09-213-7/+38
|
* If a later "menu background" overrides an earlier one, free the dataH. Peter Anvin2006-09-211-0/+2
|
* Add missing #include "fill.h"syslinux-3.31-pre2H. Peter Anvin2006-09-211-0/+1
|
* Document shadowing mode change.H. Peter Anvin2006-09-211-0/+1
|
* Use the color table for the shadow, and make it user controllableH. Peter Anvin2006-09-2110-87/+161
|
* Document ability to load more than one configuration file.syslinux-3.31-pre1H. Peter Anvin2006-09-202-1/+5
|
* Support multiple configuration files in the menu systems.H. Peter Anvin2006-09-204-13/+47
|
* Factor out extlinux as a separate package, avoid /boot/memdisk errorsyslinux-3.30H. Peter Anvin2006-09-182-4/+17
|
* Correct syntax and document move to /usr/share.H. Peter Anvin2006-09-182-17/+20
|
* rpm spec: add syslinux-tftpboot moduleH. Peter Anvin2006-09-181-15/+35
|
* Added a second sample background imageH. Peter Anvin2006-09-181-0/+0
|
* Add file missing from previous commitsyslinux-3.30-pre10H. Peter Anvin2006-09-161-0/+23
|
* Proper handling of different screen sizes (we're 78x29 in graphics mode...)H. Peter Anvin2006-09-168-7/+36
|
* More color tweaks.syslinux-3.30-pre9H. Peter Anvin2006-09-152-2/+2
|
* Properly parse MENU COLOR statements.H. Peter Anvin2006-09-151-32/+38
|