loadfile: make sure we don't trash errno
[syslinux.git] / NEWS
blobe48e6c7279fd660183e27e0257c76f3afb988282
1 Starting with 1.47, changes marked with SYSLINUX/PXELINUX/ISOLINUX
2 apply to that specific program only; other changes apply to all of
3 them.
5 Changes in 3.70:
6         * PXELINUX: Support enhanced capabilities when running on top
7           of gPXE (http://www.etherboot.org/).  In particular, support
8           URL-style syntax for filenames, and any protocol that gPXE
9           supports (except, currently, iSCSI and AoE.)  This feature
10           is currently highly experimental.
11         * Substantial infrastructure changes to support files whose
12           length aren't known at open time (typically network
13           connections.)  Please note that the semantics of some of the
14           comboot APIs have changed slightly; please see doc/comboot.doc.
15         * PXELINUX: We no longer require a TFTP server which supports
16           the tsize option for all transfers.
17         * PXELINUX: Integrate with the gPXE source base; unified image
18           now included as "gpxelinux.0".
19         * The source tree has been restructured; files that were
20           previously in the root have moved into the core, dos, gpxe,
21           and utils directories.
22         * "make install", "make netinstall", and "make extbootinstall"
23           have been updated massively.  "make install-all" now installs
24           all three.
25         * Change default dir for auxiliary files from
26           /usr/lib/syslinux to /usr/share/syslinux.
27         * SYSLINUX: VFAT long filename support.
28         * MEMDISK: Any image less than 4096K (4 MB) is treated as a
29           floppy disk.  The geometry-guessing code will recognize all
30           common extended formats, but it is still possible some very
31           exotic formats need geometry specification.  Large floppies
32           and very small harddisks still need explicit specification.
33         * chain.c32: option -swap to support swapping of BIOS drive
34           numbers.  This is necessary to boot certain operating systems
35           (DOS, Windows) from a secondary drive.
36         * chain.c32: option -file to support loading a boot file from
37           the SYSLINUX filesystem instead of loading the boot sector
38           from the drive.
40 Changes in 3.64:
41         * SYSLINUX/EXTLINUX: support "localboot" with the same feature
42           set as ISOLINUX.
43         * Add an experimental MBR for GPT partition tables.
44         * Use $(CC) when determining compile flags.
45         * chain.c32: fix booting from logical partitions (Sergey
46           Vlasov.)
48 Changes in 3.63:
49         * Fix errors in the PCI and DMI detection modules (Erwan Velu,
50           Sebastian Herbszt).
51         * Fix host dependencies and other issues in the build system.
52         * PXELINUX: Allow class E addresses as unicast.
53         * sdi.c32: module to load Microsoft System Deployment Images.
54           For additional information, please see:
55             http://msdn2.microsoft.com/en-us/library/ms838543.aspx
56         * EXTLINUX: Correct reading directories with deleted entries.
57         * Shuffle library: correct the handling of certain geometries
58           (an upward move with source material blocking the move); as
59           required by sdi.c32 but theoretically possible for other
60           formats as well.
61         * Add "make netinstall" to install /tftpboot.
62         * Fix some documentation files that didn't get moved/renamed.
64 Changes in 3.62:
65         * Clean up garbage after "aborted." message.
66         * Clean up memdump.com filenames.
67         * Support SHA256 and SHA512 encrypted passwords.
68         * The shuffle library now can generate chained descriptors,
69           thus allowing pretty much arbitrarily complex memory maps.
70         * Handle command lines up to 2047 characters, the current
71           Linux kernel limit.
72         * vesamenu: support systems without linear framebuffer support
73           (sigh, what is this, 1993?) and 15-bit RGB modes.
74         * Move the label storage (for the command-line interface) to
75           high memory, removing the size limit and freeing up 64K of
76           low memory.
77         * Get rid of 4096-entry limit in the simple menu system.
78         * New hierarchial submenu support: see MENU BEGIN, MENU END,
79           MENU GOTO in doc/menu.txt.
80         * MENU QUIT allows creating a menu entry for returning to the
81           command line.
82         * ISOLINUX: Work around bug in certain Adaptec BIOSes,
83           patch by Bruce Robson.
84         * pngtopnm dependency removed from samples/ directory.
85         * Text documentation files (in doc/) renamed *.doc -> *.txt.
87 Changes in 3.61:
88         * EXTLINUX: fix crash when accessing an empty file.
89         * elf.c32: If a PHDR segment is present, load it.
90         * Fix SHA-1 and MD5 passwords.
91         * ISOLINUX: fix booting when mastered without
92           mkisofs -boot-info-table (broken since 3.50, sigh...)
93         * Handle BIOSes which emit multiple contiguous valid
94           memory regions in the e820 map.
96 Changes in 3.60:
97         * Support for "auxilliary data vector", a small amount of
98           writable storage.  Currently only supported for EXTLINUX,
99           but the infrastructure is there for the other derivatives,
100           assuming a suitable storage location can be found.
101         * EXTLINUX: boot-once support (--once, --clear-once, and
102           --reset-adv).
103         * A command is now required to the EXTLINUX installer, i.e. at
104           least one of --install, --update, --once, --clear-once, or
105           --reset-adv.
107 Changes in 3.55:
108         * PXELINUX: as per RFC 5071, PXELINUX no longer requires the
109           use of the magic cookie option (208) for unencapsulated
110           options.  Currently it does not require it for
111           vendor-encapsulated options (vendor-option-space) either,
112           but that MAY be reverted in the future if it causes
113           problems.
114         * Documentation text files moved to a common "doc" directory;
115           man pages from the Debian project added to the "man"
116           directory.
117         * Correct bug with self-overlapping memory areas when using
118           the shuffle interface.
120 Changes in 3.54:
121         * Add "menu separator", "menu indent", "menu disabled"
122           (see README.menu).
123         * vesamenu: fix handing of VESA modes with noncontiguous
124           memory buffers.  In particular, Qemu/KVM sets up such a mode
125           when Cirrus Logic emulation is enabled (which is the
126           default.)
127         * Support for calling real mode functions using far calls,
128           with argument on the stack.  This was implemented to support
129           the BIOS BBS specification, but subsequent experiments show
130           that the at least one of the most common BIOS cores, Award,
131           passes the presence check but doesn't actually implement the
132           functionality.
134 Changes in 3.53:
135         * Fix bugs related to the $PnP BIOS functionality on some
136           platforms.
137         * PXELINUX: Fix the "naked" version of :: (suppress prefix.)
138         * elf.c32: better error messages.
139         * Faster operation under Intel VT virtualization.
140         * PXELINUX: Fix DHCP bootfile option.
141         * mkdiskimage: Support more than 1024 cylinders.
142         * (Hopefully) fix installer on non-x86 platforms.
143         * Fix shuffle_and_boot_rm, used by linux.c32.
144         * Fix shuffle_and_boot_pm on 386/486.
145         * ISOLINUX (at least): fix bss memory overwrite hang.
146         * MBR: Fix booting from logical partitions.
147         * Code cleanups.
149 Changes in 3.52:
150         * Handle capitalized F-key commands in the menu system.
151         * Fix padding error when loading multiple ramdisks.
152         * Workaround for VMware crashing when trying to print a
153           message during early kernel boot (does not seem to work,
154           consider deleting.)
155         * chain.c32: add the ability to search for a specific MBR
156           signature at runtime.
157         * Fall back to the server identity option if the siaddr field
158           in the DHCP header isn't set.  This seems to match the
159           behaviour of most PXE stacks.
160         * mkdiskimage: give the generated disk image an MBR signature.
161         * MEMDISK: Fix failures on some BIOSes.
162         * Simple menu system: new "MENU HIDDEN" option to not display
163           the menu unless the user presses a key.
164         * Simple menu system: support MD5-encrypted passwords (modern
165           Unix standard style, with "$1$" prefixes.)
166         * pcitest.c32: now functions as a full "lspci".  Thanks to
167           Erwan Velu for this work.
168         * MEMDISK: Make EDD actually work.
169         * ISOLINUX: Fix for certain broken CD-ROM BIOSes which
170           randomly corrupted register FS.
171         * Simple menu system: fix memory overwrite bug that caused
172           some systems to lock up or behave weirdly.
173         * Fix building on 64-bit systems without a 32-bit libc installed.
175 Changes in 3.51:
176         * EXTLINUX: Fix failure to find the configuration file.
178 Changes in 3.50:
179         * New keywords allow the type of file to be specified in the
180           configuration file.
181         * It is now supported to load a different configuration file
182           with the CONFIG keyword.
183         * Fix API call 0x0019 (Read Disk.)
184         * MENU AUTOBOOT, MENU TABMSG, MENU PASSPROMPT allows
185           internationalization of menu messages.
186         * A new feature, TEXT HELP, allows the administrator to set
187           a multi-line help message for individual selections.
188         * Fix API call 0x0012 (Cleanup, shuffle and boot.)
189         * New API call "Cleanup, shuffle and boot to flat protected mode"
190         * New API call "Cleanup, shuffle and boot to real mode",
191           similar to API call 0x0012 but allows arbitrary register setting.
192         * Introduce a library interface for loading arbitrary binary
193           formats with relatively easily understood code.  See
194           the elf.c32 module for an example on how to use it.
195         * New module "elf.c32", to load a protected-mode ELF kernel.
196         * MBR (old and new): Fix bug in CHS mode when LBA >
197           65535*sectors.
198         * vesamenu: fix decoding of palettized PNG images.
199         * Update the Linux kernel boot protocol.
200         * PXELINUX: Press Ctrl-N at the boot prompt to read out the
201           network info.
202         * Instead of the (non-existent) MAC, use the client identifier
203           for networks like Infiniband and Firewire/1394.
204         * Add a new INCLUDE command to the core syslinux parser.
205         * Allow binding help text to F11 and F12.
206         * F-key help now available in the simple menu system.
207         * Disabled the polling for ARP during idle.  It is simply too
208           slow on some (broken!) PXE stacks.
209         * PXELINUX: also try to fetch the config file based on UUID.
210         * SYSLINUX/EXTLINUX: New RAID mode (-r) which calls the BIOS
211           to load the next device (typically the next drive) on boot
212           failure.
214 Changes in 3.36:
215         * MEMDISK: Disable EDD by default on floppy disks.  EDD can be
216           enabled with the "edd" option and disabled with "noedd".
217           This (hopefully) should make Ghost work again.
218         * SYSLINUX: "unix" installer now uses Linux ioctls instead of
219           using libfat.
220         * New MBR which can boot from logical partitions.
221         * SYSLINUX: Fix bug in detecting special extensions which was
222           introduced in 3.35 :(
223         * PXELINUX: Unbreak chainbooting FreeBSD (and possibly others.)
225 Changes in 3.35:
226         * MEMDISK: New "safeint" mode.
227         * MEMDISK: Be more compliant with the PnP BIOS spec.
228         * MEMDISK: Turn on EDD support by default.
229         * MEMDISK: Try to work on some machines on which it would not
230           work when there was no floppy drive in the system.
231         * Simple menu system: fix serial console support (broken in
232           3.30).
233         * SYSLINUX: Support subdirectories.  Like ISOLINUX, the
234           "current directory" is the directory in which syslinux.cfg
235           is found; this is searched for in the sequence
236           /boot/syslinux, /syslinux, /.  As a side benefit, label names
237           like "linux-2.6.18" and "linux-2.6.19" are now supported.
239           To install ldlinux.sys in a subdirectory, pass the -d
240           directory option to the SYSLINUX installer.
242           This work was sponsored by slax.org (thanks, Tomas!)
243         * New API call: read disk.
244         * Invoke ONERROR on initrd load failure.
246 Changes in 3.31:
247         * The simple menu system (menu.c32 and vesamenu.c32) now
248           support loading more than one configuration file at a time,
249           using MENU INCLUDE or by specifying multiple filenames.
250         * The MENU COLOR statement can now control the shadowing mode.
252 Changes in 3.30:
253         * libcom32 extended to support graphics mode and graphical console.
254         * vesamenu.c32, new graphical version of the Simple
255           Menu System, see README.menu.
256         * New com32 modules by Erwan Velu do selection based on CPUID
257           or PCI devices present.
258         * RPM spec: add syslinux-tftpboot module; move syslinux by
259           default to the /usr/share/syslinux directory.
260         * RPM spec: extlinux is now a separate package.
262 Changes in 3.20:
263         * EXTLINUX: New options --install (-i) and --update (-U), to
264           make it clear if a boot loader should be installed or
265           updated.  For now, defaults to --install for compatibility;
266           a future version will require one of these options.
267         * New library functions to load and place files in memory.
268         * mboot.c32 bug fixes.
269         * Remove 8 MB kernel size restriction.
270         * Add "klibc" target for building unix/syslinux and
271           extlinux/extlinux with klcc (klibc-1.4.27 or later.)
272         * PXELINUX: Fail (and eventually reboot) if no configuration
273           file was found.
274         * COM32 module by Erwan Velu to make decisions based on DMI
275           info.
276         * Fix issue where going back and forth between menus a lot
277           would cause a hang.
278         * ISOLINUX: Fix bug which made "cd boot sectors" not work.
280 Changes in 3.11:
281         * MEMDISK: Fix bug by which accessing the real floppy disk
282           as B: in MS-DOS was broken.
283         * Simple menu system: allow tweaking of the screen layout.
284         * Simple menu system: better command-line editing, correctly
285           handle command lines above 256 characters.
286         * PXELINUX: revert memory allocation change that caused
287           problems on some network cards.
288         * MEMDISK: Try work around a bug on some BIOSes when no
289           physical floppy disk is present in the system.
290         * Enable the 16550A FIFOs, if present, when doing serial
291           console.
292         * New "totaltimeout" command establishes a timeout without
293           regard for any user input.
294         * Simple menu system: timeout behaviour now more in line with
295           user expectations.
296         * Simple menu system: "ontimeout" should now work correctly.
298 Changes in 3.10:
299         * gcc 4.0.1 compilation fixes.
300         * Add support for querying the PCI BIOS in libcom32
301           (used by ethersel et al.)
302         * Fix PCI handing (ethersel etc) on several old chipsets (and
303           VMWare.)
304         * Try to deal with systems with broken EBIOS.
305         * New API call to do "localboot".
306         * New API call to query features.
307         * New API call to run kernel image, a lower-level call than
308           "run command".  See comboot.doc.
309         * Fix for bug in EBIOS code discovered by Arwin Vosselman.
310         * NOESCAPE security fix.
311         * Comments are now recognized even without a space following #.
312         * Fix incorrect handling of mixes of entries with and without
313           MENU PASSWD.
314         * The idle API call now harmlessly returns failure if it is a
315           no-op.  That way the caller can decide whether or not to
316           bother invoking it again.
317         * Temporarily disable the idle API call on PXELINUX, due to
318           some platforms on which the idle API call seems to hang; this
319           problem has not yet been debugged.
320         * MEMDISK: the handling of DOSEMU-headered images was broken;
321           fix it.
322         * EXTLINUX: symlinks are now supported.
323         * Simple menu system: N and P now work correctly as hotkeys.
324         * MEMDISK: more BIOS bug workarounds.
326 Changes in 3.09:
327         * gcc4 compilation fix.
328         * <BEL> (Ctrl-G) in message files now causes a beep.
329         * Reduce the command line to 511 characters; 1023 caused
330           memory overflows.
332 Changes in 3.08:
333         * SYSLINUX: Fix performance regression (-s mode always
334           enabled.)
335         * Add API function for idle loop.
336         * libutil: Add do_idle() function for idle loop, make
337           get_key() use it.
338         * libutil: Add SHA-1 and base64 functions.
339         * Simple menu system: add password support.
340         * EXTLINUX: Sparse files now handled correctly.
341         * EXTLINUX: Large directories now handled correctly.
342         * ALL: At the prompt, Ctrl-X now forces text mode.
343         * Fix configuration file parsing error, that could cause
344           hangs.
345         * Rewritten advanced menuing system from Murali Ganapathy.
346         * MEMDISK: New "bigraw" mode to work around certain broken
347           BIOS flash programs.
348         * COM32 module to boot Multiboot systems, including Xen.  See
349           com32/modules/mboot.doc.
350         * Max command line changed to 1023 characters.  Note that the
351           kernel proper still can only handle 255 characters without
352           patching, and COM16 binaries can only handle 125 characters.
354 Changes in 3.07:
355         * Fix chainloading (chain.c32).
356         * Fix zlib build problem.
357         * Use a private copy of <linux/ext2_fs.h>.
359 Changes in 3.06:
360         * Fix typo that caused the ramdisk to load in the wrong place.
362 Changes in 3.05:
363         * New API function "shuffle and boot"; allows COM32 modules to
364           load or construct (almost) arbitrarily complex objects,
365           e.g. a kernel and its initrd/initramfs in pieces, and have
366           the API core reorganize memory for booting.  (A library API
367           for this function will be introduced in a later version.)
368         * The initrd= option now supports multiple filenames separated
369           by commas.  This is mostly useful for initramfs, which can
370           be composed of multiple separate cpio or cpio.gz archives.
371           (Note: all files except the last one are zero-padded to a 4K
372           page boundary.  This should not affect initramfs.)
373         * EXTLINUX: Fix API function 000Ah (get derivative-specific
374           info).
375         * libcom32/ethersel: Support PCI Config Mechanism #2 on
376           machines still infested with that hideous old hack.
377         * SYSLINUX: Fix directory-parsing bug.
379 Changes in 3.02:
380         * SYSLINUX: The "unix" installer now sets the MS-DOS
381           attributes (hidden, system, readonly.)
382         * COM32 library: build the .lnx (test modules for running
383           under Linux) as architecture native modules, in case
384           i386 devel libraries aren't installed.
385         * EXTLINUX: Hack for systems which don't have BLKGETSIZE64
386           defined in the standard header files.
387         * Simple menu system: minor aestetic improvements, and try to
388           work better over a serial console (speed, and readability on
389           monochrome terminal emulators.)
390         * New CONSOLE directive to control output on the video console
391           (useful for dealing with some broken serial-forwarding
392           BIOSes.)
393         * New com32 module "ethersel" for searching for an Ethernet
394           card and selecting the proper version of Etherboot.
395         * EXTLINUX: Allow the user to override the detected geometry.
396           Add help.
398 Changes in 3.01:
399         * EXTLINUX, SYSLINUX: Fix compile errors on some systems.
400         * EXTLINUX: Default to zipdrive geometry (64 heads, 32
401           sectors) if no other geometry can be detected.
403 Changes in 3.00:
404         * SYSLINUX: Support FAT32 and EDD.  As an unfortunate
405           consequence, LDLINUX.SYS is no longer an ordinary file; it
406           is block-mapped at install time, which means it can only be
407           written using the syslinux installers.
408         * SYSLINUX: Reorganize the source code for the installers;
409           each one of the installers (dos, win32, unix, mtools) is now
410           built in its own subdirectory.  In particular, "mtools" is
411           the unprivileged installer which uses mtools; "unix" is the
412           privileged installer which uses system calls.
413         * SYSLINUX: Completely rewritten DOS installer in C.
414         * ALL: "label" statement information is now stored in a
415           compressed format, which means that a lot more labels are
416           permitted (500-1000 in a typical configuration, but depends
417           on the complexity.)
418         * EXTLINUX: New derivative, which boots from an ext2/ext3
419           filesystem.
420         * SYSLINUX: The DOS and Win32 installers can now optionally
421           write the boot sector to a file instead of the real boot
422           sector.  This is not supported in the Linux installers,
423           however.
424         * ALL: New NOESCAPE command, disables the "hold down the Shift
425           key to display the prompt" behaviour.
426         * New simple menu system, as an alternative to the advanced
427           menu system already present.  See README.menu for details.
428         * PXELINUX: Filenames can now be prefixed with an IP address
429           or DNS name plus :: (e.g. 192.0.2.1::filename or
430           server.domain.com::filename), which downloads a file from an
431           alternate TFTP server, or just a :: (e.g. ::filename), which
432           suppresses the common pathname prefix.  See pxelinux.doc.
433         * SYSLINUX: Add an -m option to the DOS and Win32 installers
434           to write an MBR and -a to mark the partition SYSLINUX is
435           being installed on active.
436         * MEMDISK: Give a way to query the boot loader type while
437           running MEMDISK; see memdisk/memdisk.doc and
438           sample/mdiskchk.c.
439         * mkdiskimage: substantially improved mkdiskimage which, among
440           other things, can now be used to initialize USB keys as
441           zipdrives; see README.usbkey for more information.
443 Changes in 2.13:
444         * MEMDISK: Fix command-line parsing "brown paper bag" class
445           bug.
446         * MEMDISK: Add "raw" mode to support the DOS boot disk from
447           WinME/XP, which seems to deliberately crash the system
448           when someone uses the "INT 15h mover" highmem API.
449         * Make "make install" do something sane for the com32
450           development environment.
451         * In the spec file, create a separate -devel RPM for the com32
452           development environment.
454 Changes in 2.12:
455         * Simple C library, based on klibc, for writing COM32
456           programs.
457         * Fix the handling of file length in loading of COM32
458           programs.
459         * MEMDISK: Work around a linker bug by rearranging the code to
460           not use the linker for the 16-bit code.
461         * SYSLINUX: If we're building on a machine without a Win32
462           (mingw) compiler, just skip building syslinux.exe.
463         * ISOLINUX: Support non-mkisofs mastering programs, at least
464           as long as the image is single-session.  For best results,
465           ISOLINUX should be the only boot loader installed.
466         * MEMDISK: Allow the user to specify that the simulated disk
467           should be write-protected.
469 Changes in 2.11:
470         * ALL: Add an API call to get the configuration file name.
471         * SYSLINUX: Fix bug in 2.10 that prevented it from working
472           correctly for a lot of people.
473         * SYSLINUX: In the installer, make mtools a bit less fussy.
474         * Make the menu system compile with newer gcc's.
476 Changes in 2.10:
477         * MEMDISK: Handle images compressed with zip as well as with
478           gzip.  Some Windows-based image tools apparently generate
479           these kinds of images by default.  Patch by Patrick
480           LoPresti.
481         * Major menu improvement from Murali Ganapathy.
482         * ISOLINUX: Wonderfully sick and brilliant workaround for
483           severe bugs in certain Award BIOSes; from Knut Petersen.
484         * SYSLINUX: Fix for the nomtools installed, from Frederic
485           Pasteleurs.
486         * PXELINUX: Fix handling of IP numbers in the ranges
487           100-109 and 200-209.
488         * ALL: New option "allowoptions" (defaults to 1), which
489           controls if options are allowed on the command line or not.
490         * SYSLINUX: Support building under klibc (see the klibc
491           distribution for details.)
493 Changes in 2.09:
494         * SYSLINUX: Remove residual setuid crap from
495           syslinux-nomtools.
496         * Handle video pages correctly when using the API functions.
497         * Handle compiling on an x86-64 platform correctly.
498         * Menu system from Murali Krishnan Ganapathy; see the menu
499           directory for information.
500         * COMBOOT: Allow COMBOOT programs to change screen text mode.
501         * COMBOOT: Correct the documentation of how to detect
502           SYSLINUX from COMBOOT!!!!
503         * COMBOOT: Fix "get key without echo" API function.
504         * SYSLINUX: Fix bug that affected the API open function.
505         * ALL: Improve the E820 memory parser, to work around some
506           buggy BIOSes.
508 Changes in 2.08:
509         * Add new configuration command "ontimeout" to allow timeout
510           to have a different action than just pressing Enter.
511         * Add new configuration command "onerror" to allow a custom
512           command to be executed in case the kernel image is not found.
513         * Fix bugs in the COMBOOT/COM32 command-line parsing.  APPEND
514           now works with COMBOOT/COM32 images.
515         * PXELINUX: Poll for ARP requests while sitting at the
516           prompt.  This makes some boot servers a lot less unhappy.
517         * PXELINUX: Actually free sockets when we get a failure
518           (including file not found.)  This bug would cause us to run
519           out of sockets and thus "go deaf" after a while.
520         * MEMDISK: Add an API to query for the existence of MEMDISK.
521         * SYSLINUX: Fix loading boot sectors (.bs/.bss) from floppy
522           disk.
523         * .c32 is now one of the extensions searched for
524           automatically.
525         * PXELINUX: RFBG.exe seems to randomly overwrite memory
526           location 0x5700.  Thus, don't use it!
527         * PXELINUX: Change pathname length max from 63 to 127; change
528           max vkernels from 128 to 64.
529         * Support Ctrl-U -> kill entire command line input.
530         * The "samples" directory contains a (barely at all tested)
531           chain loading example, chain.c32, which may be used to
532           chainload local floppy disks and hard disks.  Use with
533           "chain fdN" or "chain hdN [partition]"; N = 0 for the first
534           drive of each type.
536 Changes in 2.07:
537         * MEMDISK: Workaround for BIOSes which go into a snit when
538           they get a RESET command for the floppy system when there is
539           no floppy in the system.
540         * PXELINUX: Add "ipappend 2", which passes the hardware
541           address of the boot interface to the kernel as a
542           command-line option.
543         * mkdiskimage: fix the generation of the end limit.
544         * PXELINUX: Fix multiple bugs in chainloading of other NBPs.
545         * MEMDISK: Fix bug that would occationally cause "ran out of
546           input data" when using compressed disk images.
547         * SYSLINUX: Updates for the win32 installer (from Lars Munch.)
548         * PXELINUX: PXELINUX-specific options are now recognized both
549           in a vendor-option-space (a.k.a. type 43 encapsulated) as
550           well as in a site-option-space (unencapsulated.)
551         * COM32: Don't crash when DS != 0.
552         * COMBOOT/COM32: Make file reading work correctly.  Thanks to
553           Phung Chi Kien for submitting a test program.
555 Changes in 2.06:
556         * ALL: Fix problem that would occationally cause a
557           boot failure, depending on the length of the kernel.
558         * ISOLINUX: Fix problem that would occationally cause a
559           boot failure, depending on the length of directories.
560         * SYSLINUX: Win32 installer now flushes buffers.
561         * ppmtolss16: Be fully compliant with the PNM spec;
562           actually process comments in the header and odd
563           alignments of the various parameters, as well as
564           "plain" (not raw) files and PBM and PGM files.
565         * PXELINUX: Lower the default MTU to 1472 in order to deal
566           with systems with slightly nonstandard MTUs, and PXE
567           stacks which don't defragment correctly.  Unfortunately this
568           is very hard to test dynamically.
570 Changes in 2.05:
571         * PXELINUX: Add a default query based on the hardware address
572           of the boot device.  This is in lower case hexadecimal form
573           separated by dashes and including the hardware type, for
574           example, the Ethernet (type 1) address 88:99:AA:BB:CC:DD
575           would query the file pxelinux.cfg/01-88-99-aa-bb-cc-dd.
576         * PXELINUX: Fix bug involving non-IP-based config file names.
577         * SYSLINUX: New installer for WinNT-based systems, from Lars
578           Munch.
579         * MEMDISK: Fix handling of memory region overlap when
580           decompressing.  Thanks to Mikhail Kupchik for identifying
581           the problem.
583 Changes in 2.04:
584         * ALL: Reclaim even more low memory by observing that
585           comboot_seg == real_mode_seg is perfectly fine, and by the
586           fact that the 1000h segment managed to get unused in all
587           derivatives...
588         * PXELINUX: Attempt to negotiate full Ethernet-sized blocks
589           (1468 bytes) using the blksize option.
590         * SYSLINUX: Resurrect the old no-mtools version of the
591           installer, although as a root-only tool.  Some distributors
592           have indicated that they need a small standalone installer.
593         * MEMDISK: Fix a memory offset computation error when
594           installing compressed disks which generally would cause
595           1 MB of memory to be wasted.
596         * MEMDISK: Fix installing the E820 memory map.  Calling
597           INT 15h AX=0E820h with MEMDISK 2.03 loaded would give a
598           completely corrupt memory map.
599         * SYSLINUX: Make libsyslinux a dynamic library, so that it can
600           be updated separately from client programs.  The whole idea,
601           after all, is to enable alternate programs to become
602           syslinux installers.
603         * Include an rpm spec file in the distribution, so rpmbuild
604           -ta works.
606 Changes in 2.03:
607         * Actually support comment lines in the configuration file.
608         * PXELINUX: Try to resolve some problems with stack switches.
609         * PXELINUX: Handle PXE stacks with broken routing.
610           With these workarounds, the remote install PXE boot floppy
611           (rbfg.exe) from Argon Technologies should work correctly.
612         * Fix problems with Perl scripts in UTF-8 locales.
613         * You probably need NASM 0.98.34 or later to compile this
614           version.  0.98.36 is recommended.
615         * MEMDISK: Now supports gzip compressed images.
617 Changes in 2.02:
618         * SYSLINUX: Security flaws have been found in the SYSLINUX
619           installer when running setuid root.  Rewrite the SYSLINUX
620           installer so it uses mtools instead.  It therefore now
621           requires mtools (specifically mcopy and mattrib) to exist on
622           your system, but it will not require root privileges and
623           SHOULD NOT be setuid.
625 Changes in 2.01:
626         * MEMDISK: Fix memory sizing bug when the ramdisk crosses the
627           16 MB boundary.
628         * MEMDISK: Add a "pause" option to stop immediately before
629           booting, to read off the messages.
630         * MEMDISK: Support disk images with DOSEMU headers.
631         * Update the mkdiskimage script to handle newer mtools
632           versions, and be able to generate disk images with DOSEMU
633           headers (controlled by the -d option).
634         * Fix the COM32 sample program.
635         * PXELINUX, ISOLINUX: Fix some COMBOOT API calls.
636         * PXELINUX: Doc fix.
637         * Build SYSLINUX into a small library for encapsulation into
638           other programs (however, please keep in mind this is a GPL'd
639           library.)
640         * SYSLINUX: Make installer work with "owner" in /etc/fstab.
641         * SYSLINUX: Fix issue with working on nonpartitioned hard disk
642           devices.  THIS CONFIGURATION IS NOT RECOMMENDED.
644 Changes in 2.00:
645         * ALL: Add support for "COM32" (32-bit COMBOOT) images.
646         * ALL: Add an API for COMBOOT/COM32 images.  See comboot.doc
647           for details.  There is a C development environment for
648           COM32 being created; it should be ready at some point in
649           the future.
650         * Fix mbr.asm so that it actually works.
651         * SYSLINUX: The syslinux installer *SHOULD* now be safe to
652           run setuid root.
653         * PXELINUX: Fix bug where PXELINUX would override random
654           chunks of the UNDI code segment!  Thanks to Kevin Tran for
655           finding this bug.
656         * ISOLINUX: Fix a bug related to slashes in pathnames.
657         * ISOLINUX: Fix a bug in handling initrds over 128 MB.
658         * ALL: Make the <Ctrl-V> key print out the version; this is
659           to help debugging.
660         * Add a small script, mkdiskimage, to create a DOS-formatted
661           hard disk image using mtools.  This may be useful in
662           conjunction with MEMDISK.
663         * ISOLINUX: Search for a /boot/isolinux directory as well as
664           /isolinux.
665         * ALL: Fix a bug related to very long configuration files.
666         * PXELINUX: Work around a NASM bug which would result in no
667           delay before reset if an error occurs.
669 Changes in 1.76:
670         * ISOLINUX: Remove code no longer used which caused hangs on
671           some Toshiba laptops.
673 Changes in 1.75:
674         * ALL: NASM 0.98.32 or later is now required to build
675           SYSLINUX from sources.
676         * SYSLINUX: put back in the workaround for the BIOS floppy
677           table.  This seems to be a requirement for "extended" floppy
678           formats to work correctly.
679         * SYSLINUX: No longer warn if one is trying to boot on a 286
680           or older.  The above BIOS workaround no longer fits if the
681           requirement to use only 8086-compatible code in the early
682           boot is maintained.  It made sense in 1994, but in 2002 a
683           286 or older is a museum object.
684         * SYSLINUX: Use a downright bizarre, stateful algorithm to try
685           to guess the maximum transfer size.  I am *hoping* this will
686           cut down on the number of systems for which -s is required
687           to work at any acceptable speed.
688         * ISOLINUX: Add a few more workarounds for various broken El
689           Torito BIOSes.
690         * Make sure .depend files aren't accidentally packed...
691         * ALL: Fix bugs in the extension-detect code; this caused
692           files like COMBOOT images and CD boot sectors to be
693           mis-identified as Linux kernels and rejected.
694         * ALL: Fix the return from COMBOOT.
695         * ALL: Do some of the early groundwork for supporting DOS
696           system calls in COMBOOT.
697         * Get rid of unnecessary "near" directives, making the code
698           bigger.
699         * PXELINUX: Put the PXE stack back in the init state before
700           invoking a chain-loaded NBP.
701         * PXELINUX: Actually found the combination of calls that
702           allows some (most?) PXE 2+ stacks to be unloaded from memory
703           properly.
704         * PXELINUX: Add "keeppxe" command-line option to disable
705           the standard unloading of the PXE stack.
707 Changes in 1.74:
708         * SYSLINUX: fix bug that would cause valid kernel images to be
709           labelled "invalid".
711 Changes in 1.73:
712         * Work on removing gratuitous differences between modules.
713         * Break up the source in common and module-specific files.
714         * PXELINUX: Allow chaining of other PXE NBPs.
715         * ISOLINUX: Allow loading "CD-ROM boot sectors".
716         * ALL: generalize the definition of a boot sector/NBP.
718 Changes in 1.72:
719         * PXELINUX, ISOLINUX: Fix bugs in the new core code.
721 Changes in 1.71:
722         * Fix a "brown paper bag" class bug in the new core code.
724 Changes in 1.70:
725         * Major code restructuring.
726         * Relax the conventional memory limits somewhat.
727         * MEMDISK: Set up the "version number string" pointer in the
728           header correctly.
729         * SYSLINUX: Fix, again, "the bug that won't die": the use of
730           the offset parameter with the SYSLINUX installer.
731         * SYSLINUX: Fix possible superblock corruption problem in the
732           SYSLINUX installer.
734 Changes in 1.67:
735         * Handle bug in the location of initrd.
737 Changes in 1.66:
738         * MEMDISK: Make compile with newer versions of gcc.
740 Changes in 1.65:
741         * ISOLINUX: Support booting disk image files (to boot DOS or
742           other non-Linux operating systems), *IF* the BIOS works
743           correctly; unfortunately many BIOSes apparently don't.
744         * Support Linux boot protocol version 2.03 (explicitly
745           specify the initrd address limit.)
746         * Handle small "pseudo-kernels"; images that use the Linux
747           kernel boot protocols but are less than 64K in size.
748         * MEMDISK: New subsystem; this is a driver which allows
749           legacy OSes to boot using an in-memory simulated disk.
750           See memdisk/memdisk.doc for more info.
751         * PXELINUX, ISOLINUX: Correctly handle files larger than 65535
752           blocks (32 MB for PXELINUX, 128 MB for ISOLINUX.)
753         * PXELINUX: Make a best-effort attempt at freeing all memory
754           claimed.  From the looks of it, it will fail on most PXE
755           stacks.
757 Changes in 1.64:
758         * Limited support for hardware flow control when using a
759           serial port console.
760         * Support specifying the serial port I/O address explicitly.
761         * Make DOS installer hopefully behave more nicely when used on
762           recent Windows versions.
763         * Fix returning to text mode when a font has been specified.
764         * Attempt to detect missing serial port hardware and disable
765           the serial port if there is nothing there.
767 Changes in 1.63:
768         * Make the ppmtolss16 program handle color conversion more
769           correctly.
770         * Clean up "make install" target, honour INSTALLROOT if it
771           exists.
772         * SYSLINUX: Fix stack-smash bug identified by Steffen
773           Winterfeldt.
774         * Hopefully fix return-to-text-mode on some graphics cards.
775         * ISOLINUX: Bug workaround for Award BIOS 4.51, and perhaps
776           other buggy BIOSes as well.
778 Changes in 1.62:
779         * PXELINUX: Allow the DHCP server to override the
780           configuration file name and pathname prefix, using
781           "site-specific" DHCP options.
782         * PXELINUX: Documentation fixes.
783         * PXELINUX: Fix the "ipappend" option; the last two values
784           were reversed vs. what the kernel expected.
785         * Introduce a way to return to text mode once we are already
786           in graphics mode.  This may be useful for F-key help
787           screens.
788         * Fix several bugs in the way return to text mode was handled.
790 Changes in 1.61:
791         * ISOLINUX: Support full pathname searches.  Max length for a
792           pathname is 255 characters.  As a result, only 64 "label"
793           statements are supported in ISOLINUX.
794         * PXELINUX: Max filename length extended to 63 characters.
796 Changes in 1.60:
797         * Add support for graphical splash screens.
798         * Add mode control characters, which allows you to control
799           message display output depending on output mode (text,
800           graphics, or serial port.)
801         * ISOLINUX: New program, which boots Linux from a CD-ROM
802           without using floppy emulation mode.  See isolinux.doc for
803           more details.
804         * PXELINUX: Don't search for boot sector file types, since
805           they don't work anyway.
806         * SYSLINUX: Document the LOCK command for Win9x, and the error
807           dialog box for WinNT/2K.
809 Changes in 1.54:
810         * PXELINUX: Fix code for finding !PXE from PXENV+.  This was
811           due to a spec bug; match the most recent spec since that
812           seems to be what implementations actually do.
813         * SYSLINUX: Add some smarts to the boot sector, which
814           hopefully should reduce the number of systems which require
815           stupid mode ("syslinux -s").
816         * PXELINUX: Document further some of the pathologies with old
817           PXE stacks.
818         * When specifying a "default" command line, no longer
819           automatically appent "auto".  See the "DEFAULT" command in
820           syslinux.doc for more information.
821         * PXELINUX: Clean up the allocation of local socket numbers.
823 Changes in 1.53:
824         * PXELINUX: Rename pxelinux.bin to pxelinux.0, to match what
825           most PXE servers seem to expect.
826         * PXELINUX: Update the DHCP/boot server setup documentation.
827         * PXELINUX: Support new "localboot" option for "label"
828           sections.
829         * PXELINUX: More robust parsing of DHCP/boot server packets.
830         * PXELINUX: Include a small utility program "gethostip" to
831           compute hexadecimal IP addresses.
833 Changes in 1.52:
834         * PXELINUX: Fix bugs introduced by new A20 code.  (SYSLINUX
835           has also been changed for code consistency reasons, but I'm
836           pretty sure the changes are don't care on SYSLINUX.)
837         * Documentation updates.
838         * PXELINUX: Add "ipappend" option to generate an ip= option to
839           the kernel.
841 Changes in 1.51:
842         * PXELINUX: Not all PXE stacks fill in the IP address for a
843           type 3 cached info query.  Use a type 2 cached info query
844           for this information (only.)
845         * Yet another attempt at A20 coding.  Now support BIOS call
846           15:2401 as well, and handle machines which always have A20
847           on separately.
848         * Support memory detection using INT 15h, AX=0E820h.  BIOS
849           manufacturers have apparently gotten sloppy about keeping
850           INT 15h, AX=0E801h working properly.
851         * Don't issue <CR><LF> onto the serial port when we're doing
852           screen wraparound.
854 Changes in 1.50:
855         * Yet another A20-code update.  It seems some "legacy-free"
856           machines and embedded gear simply don't have a KBC to talk
857           to, and that waiting for one will wait forever.  Sigh.
859 Changes in 1.49:
860         * SYSLINUX: Implement a hack for BIOS drivers which hog significant
861           chunks of low memory during boot.  (Note: PXELINUX already
862           had this modification.  SYSLINUX does still require that the
863           low 512K is available; PXELINUX requires 384K.  Machines
864           with a physical memory hole in the low 640K cannot boot
865           Linux no matter what.)  Depending what the reason is for the
866           memory hole, a new kernel (2.4.0-test3-pre3 or later) may be
867           required.
868         * SYSLINUX: Default installer binary now compiled against
869           glibc 2.1.  If this is inappropriate for your system and you
870           still want to use the offical version of SYSLINUX, please
871           follow the instructions in "distrib.doc" to rebuild the
872           installer.
873         * SYSLINUX: Linux installer program now supports -o <offset>
874           option which does a loopback mount with the
875           -o loop,offset=<> option.  Useful to run SYSLINUX on an
876           individual partition of a whole-harddisk image.
877         * Include the source code to a Master Boot Record (MBR)
878           functionally equivalent to the one installed DOS except it
879           includes EBIOS support, and should be resistant to geometry
880           changes.  The MBR code is public domain.
881         * PXELINUX: Fix "double p" bug: if the tftp prefix was null,
882           all filenames would get a "p" preprended, e.g.
883           "ppxelinux.cfg" and "pvmlinux".
885 Changes in 1.48:
886         * PXELINUX: Workaround for PXE ROMs based on the Intel PXE PDK
887           3.0 build 071 and earlier: missing !PXE structure pointer.
888         * PXELINUX: Handle larger BOOTP/DHCP packages.
889         * PXELINUX: The command line passing was broken; fix.
890         * PXELINUX: Make COMBOOT images work.
891         * PXELINUX: Documentation on how to make booting work using
892           the PDK 3.0-derived clients, which aren't so generous as to
893           allow booting with only "PXEClient" specified.
895 Changes in 1.47:
896         * PXELINUX: RFC 1123 states that a TFTP implementation MUST
897           use adaptive timeout, "at least an exponential backoff of
898           retransmission timeout is necessary."  Implement a very
899           simple exponential backoff for retransmits.
900         * PXELINUX: Updated documentation, including pointer to new
901           TFTP server.
902         * PXELINUX: When sending ERROR due to bad OACK, use the proper
903           destination port number (why are TFTP port numbers so odd?)
904         * PXELINUX: If the boot dies in the middle somewhere,
905           eventually give up and reset the machine (unattended
906           operation.)
908 Changes in 1.46:
909         * New program PXELINUX to do network booting using a
910           PXE-compliant (Pre-Execution Environment) network booting
911           PROM.  See pxelinux.doc for details.
913 Changes in 1.45:
914         * Serial console support.  See syslinux.doc for details.
916 Changes in 1.44:
917         * Change HIGHMEM_MAX to 38000000h to (hopefully) avoid the
918           kernel stepping on it; 3f000000h was apparently a higher
919           limit than the kernel used!
921 Changes in 1.43:
922         * Add sys2ansi.pl script to display the contents of a
923           colorized SYSLINUX file.
924         * Changed the io_delay once again, after a report that the
925           old delay port causes hangs on some systems.
927 Changes in 1.42:
928         * Frob the "fast A20 gate" port as well as the keyboard
929           controller; will this help systems with problems?
930         * Be even more paranoid about A20, unfortunately even this
931           seems to be not paranoid enough... what I don't understand
932           is that if there is hardware out there *this broken*, how
933           can it run Linux at all?  Report an error message rather
934           than hang forever if A20 is stuck.
935         * Include some intermediate files in the distribution, plus
936           provide a "make installer" target for distributors to relink
937           the install programs only.  I would prefer the syslinux boot
938           loader proper to be "binary clean" for debuggablity -- use
939           "make clean ; make installer" to rebuild the installers only.
941 Changes in 1.41:
942         * Don't get confused by directories, volume labels, or VFAT
943           long names.
944         * Use INT 15h, AX=0E801h to query memory size before trying
945           INT 15h, AH=88h.  This not only provides more headroom
946           between the kernel and the initrd on large-memory machines,
947           but it appears some recent BIOSes actually have started
948           returning garbage for the AH=88h (older) call.
949         * Trust high memory beyond the 15 MB mark if the user has
950           specified it, or if obtained with INT 15h, AH=0E801h (with
951           no memory holes above 1 MB.)
953 Changes in 1.40:
954         * Increase A20M delay and put in a test to avoid problems on
955           certain IBM Thinkpads (thanks to Donnie Barnes of RedHat
956           for vital info on this one.)
957         * Support COMBOOT style boot command images.
958         * Support chain loading (foreign operating systems, e.g. DOS).
959         * Include a new "copybs" DOS utility to copy a boot sector to
960           a file (under Linux, use "dd".)
961         * Fix the DOS installer to work for disks over 32 MB.
962         * SYSLINUX should now handle disks with more than 65536 tracks.
964 Changes in 1.37:
965         * Fix a bug that caused "label" statements in syslinux.cfg to
966           not be handled properly.
967         * Updated the documentation.  Among other things, we now allow
968           up to 128 "label" statements.
970 Changes in 1.36:
971         * Fix for booting old (pre-initrd) kernels.
972         * It seems at least some versions of OS/2 doesn't set up all
973           the fields in the superblock correctly.  Account for that.
974         * Fix bug that caused boot failure when using the mem= option.
976 Changes in 1.35:
977         * Loading from partitions now should work properly.  (Actually
978           tested, this time.  You should even be able to dd a floppy
979           to a partition and boot from it.)
980         * Removed large workaround code for an alleged ancient BIOS
981           bug I have never actually seen.  The -s option should work
982           on those machines, anyway.
983         * Support for simple keyboard remappings, same as used by
984           LILO (once again to support localization.)  The program
985           keytab-lilo.pl from the LILO distribution included to
986           generate such maps.
987         * Added a "safe, slow and stupid" (-s) option to the
988           installers.  This option will lobotomize the boot sector to
989           hopefully work on even very buggy BIOSes.
991 Changes in 1.34:
992         * Ability to load a VGA font on bootup (for localized Linux
993           distributions.)
995 Changes in 1.33:
996         * Bug fix in the Linux installer.
997         * Added a workaround for a bug in certain AMI/Intel BIOSes
998           when booting from CD-ROM.
999         * Documentation changes.
1001 Changes in 1.32:
1002         * FAT16 filesystems are now supported.
1004 Changes in 1.31:
1005         * Now compiles under Linux, using NASM, rather than using
1006           Turbo Assembler under DOS.  See http://www.cryogen.com/Nasm
1007           for information about NASM.
1008         * Linux-hosted SYSLINUX installer, as well as a
1009           rewritten DOS installer (now is written in assembler, so we
1010           don't need Turbo C.)
1012 Changes in 1.30:
1013         * Added support for loading bzImage and initrd loading, and made
1014           SYSLINUX new-setup-code aware (SYSLINUX 1.30 id=0x31).
1015         * Added LILO-style kernel labels; see the LABEL and IMPLICIT
1016           keywords in README file.
1017         * Added support for colorization of intro and help screens.
1018         * The vga= option is now handled correctly.
1019         * Massive rewrite of large chunks of the code in order to
1020           support the first two new features.
1022 Changes in 1.20:
1023         * Added simple online help at the "boot:" prompt.
1024         * Removed 2880K image as I no longer have access to such a
1025           floppy drive.  (Donations accepted!!)
1026         * Decided to distribute the source in a subdirectory rather
1027           than in a nested zipfile.
1029 Changes in 1.11:
1030         * Removed a sanity check which would cause booting to fail on
1031           Phoenix BIOS version 4.03.  Apparently this BIOS is buggy.
1033 Changes in 1.10:
1034         * Added configuration file SYSLINUX.CFG.  This file contains all
1035           configurable options, and can be edited from any OS which can
1036           access an MS-DOS filesystem; there is no longer a need to run
1037           SYSLINUX.EXE except to write the boot sector.
1038         * Default command line now given by "default" line in config
1039           file.
1040         * LINUXMSG.TXT and BOOTMSG.TXT hard-coded file names replaced by
1041           "display" and "prompt" lines in config file.
1042         * LILO-style option appending now supported ("append" line in
1043           config file).
1044         * Prompt timeout is now supported ("timeout" line in config
1045           file).  The timeout is cancelled when anything is typed on the
1046           command line.
1047         * Pressing <ESC> or <Ctrl-C> at the Loading... stage now aborts
1048           the kernel loading in progress and returns the user to the
1049           boot: prompt.
1050         * The installer now automatically sets the READONLY flag on
1051           LDLINUX.SYS.
1052         * Added 2880K disk image.
1054 Changes in 1.03:
1055         * Fixed bug that would prevent booting from double-density
1056           floppies and other DOS filesystems with multiple sectors per
1057           cluster.
1058         * Added 720K disk image.
1059         * Changed default kernel name on disk images to LINUX.
1061 Changes in 1.02:
1062         * Fixed bug that would garble the command line on recent kernels
1063           with more than 4 sectors of setup code (this wasn't really a
1064           *bug*; rather, a kernel change broke the code.  Unfortunately
1065           the Linux boot interface is still sorely undocumented).
1066         * Added BOOTMSG.TXT file support (message file which does not
1067           force display of the boot prompt).
1069 Changes in 1.01:
1070         * Fixed bug on some (most?) 386 BIOSes would require two boot
1071           attempts.