.gitignore: Ignore the bios, efi32, efi64 object directories
[syslinux.git] / NEWS
blob79d09cc519cb9ea0af184ed5c5c49bc6a3b8cea0
1 Starting with 1.47, changes marked with SYSLINUX, PXELINUX, ISOLINUX
2 or EXTLINUX apply to that specific program only; other changes apply
3 to all derivatives.
5 Changes in 6.02:
6         * efi64: Add support for booting 32-bit kernels.
7         * efi: Use the EFI handover protocol when booting kernels if
8           available.
9         * Fix various make targets that became broken when switching to
10           per-firmware object directories, including 'make install' and
11           'make netinstall'.
12         * efi: Improve handling of packet loss in UDP stack.
13         * tests: Introduce a new regression test framework designed to
14           ensure bugs are not reintroduced once fixed.
15         * efi: Implement localboot support.
17 Changes in 6.01:
18         * efi: Mark some symbols as __export otherwise libcom32.c32 and
19           vesamenu.c32 will refuse to load.
20         * bios: Wire up the bios kernel loader. It was impossible to
21           load a kernel from bios in 6.00.
22         * efi: Fix 'make installer'. There are no EFI installers so
23           don't try and build them as we run into build errors.
24         * efi: Reuse the initial TFTP client port in subsequent
25           transfers otherwise the server will send an error packet.
26         * efi: Some firmware will not set a default TTL value in IP
27           packets - we must explicitly set it ourselves otherwise a
28           value of zero may be used.
29         * bios, font: Fix a font regression affecting some VirtualBox
30           users.
32 Changes in 6.00:
33         * Add support for booting from EFI.
34         * EFI TCP/IP support. This allows the EFI backend to hook into
35           the generic TFTP, HTTP and FTP functionality.
37 Changes in 5.11:
38         * Dynamic debug support: Add new module, debug.c32, that allows
39           debug code to be dynamically enabled and disabled at runtime.
41 Changes in 5.10:
42         * PXELINUX: An entirely new network implementation based on
43           the lwIP embedded TCP/IP stack.  As a result, plain PXELINUX
44           can now support HTTP and FTP without gPXE/iPXE.  ls/readdir
45           functionality is supported over HTTP with an indexing
46           webserver, or over FTP with most common FTP servers. For the
47           new network stack use lpxelinux.0. For the legacy stack use
48           pxelinux.0.
49         * Rename the "ipappend" option to "sysappend" ("ipappend" is
50           still accepted as an alias) and make it available for all
51           derivatives.  Add additional strings derived from the system
52           DMI/SMBIOS information if available.
53         * "sysappend" strings are also sent as http cookies, with the
54           prefix _Syslinux_ added, on all http transfers.  This can be
55           overridden with the SENDCOOKIES configuration file command.
56         * poweroff.c32: A new module to power off a system via APM. It
57           replaces the poweroff COMBOOT module (Sebastian Herbszt).
58         * PXELINUX: Fix booting with DHCP options 209 and 210 which was
59           broken in 5.00.
60         * Handle loading kernel images with no protected mode code. A
61           legitimate kernel image can consist solely of real-mode code.
62           The support for booting such images was broken in 5.00 (Josh Triplett).
63         * Fix a regression in the .psf font file loader introduced
64           in 5.00.
66 Changes in 5.01:
67         * txt/: A new AsciiDoc documentation set (work-in-progress)
68           (Gene Cumm).
69         * core: Fix a bug in the realloc() implementation that caused
70           machines to appear to run out of free memory.
71         * ldlinux: Fix multiple buffer overflows in cmdline parsing
72           code that resulted in files failing to run and cmdlines
73           being truncated.
74         * core: Fix debug build by tagging __bad_SEG() with __export.
75         * com32: Restrict library filenames to 8.3 format.
76         * EXTLINUX: Fix installation and subdirectory patching.
77         * ISOLINUX: Fix booting isohybrid images that are over 32K.
78         * com32: Strip modules to reduce their size.
79         * XFS: Implement directory block cache and fix
80           shortform-directory lookup (Paulo Alcantara).
82 Changes in 5.00:
83         * com32: Switched from the COM32 object format to ELF as it is
84           a much more powerful format that allows undefined symbols to
85           be resolved at runtime and dynamic loading of module
86           dependencies, which means modules now become shared object
87           files instead of statically linked binaries - reducing both
88           disk space and runtime memory consumption.
89         * core: Split non-core functionality into ldlinux.c32, which
90           is an ELF module loaded by the core that contains everything
91           the core doesn't require to boot the system, e.g. config
92           parser, command-line interface, etc.
93         * Replaced __intcall() calls with direct function calls now
94           that we can resolve undefined symbols at runtime, thanks to
95           the ELF object support. Now that we no longer need to go
96           through the 16-bit interrupt mechanism we can make full use
97           of the 32-bit execution environment. This change required
98           reimplementing lots of the 16-bit assembly code from core/
99           in C.
100         * com32: __com32.cs_bounce is gone now we always run in a
101           32-bit environment once we execute ldlinux.c32.
102         * ldlinux: A new "PATH" directive was added to the ldlinux.c32
103           config parser that specifies a colon-separated list of
104           directories to search when attempting to load modules.
105         * ALL: Delete all references to/code for 16-bit COMBOOT files.
106           COMBOOT files (.cbt and .com) are no longer supported under
107           Syslinux.
109 Changes in 4.06:
110         * Support for NTFS, by Paulo Alcantara.
111         * EXTLINUX: more robust device detection, allow user to override.
112         * kontron_wdt.c32: Add a new module to enable the hardware
113           watchdog of some Kontron boards. It allows enabling the watchdog
114           and then booting a given image.
115         * HDT updated, and now can display images regarding some detection
116           steps. Add postexec command to run a particular entry after
117           HDT's execution, add silent option and various fixes.
118         * ifcpu.c32: Detect hypervisor presence.
119         * lua.c32: Add dhcp support and support for native Syslinux
120           functions syslinux_config(), syslinux_ipappend_strings() and
121           syslinux_reboot().
122         * isohybrid: Workaround for various EFI systems.
123         * pxechn.c32, a PXE NBP chainloader.  More versatile alternative
124           to pxechain.com and resolves the PXELINUX -> WDS issue with
125           Microsoft Windows Server 2008R2 (Gene Cumm).
126         * btrfs: Fix booting off of a subvolume.
127         * com32: Add device tree support.
128         * SYSLINUX: Fix relative paths for VFAT. The CONFIG and APPEND
129           directives now support entirely relative paths.
131 Changes in 4.05:
132         * HDT updated, and now supports uploading data to a TFTP
133           server.
134         * ISOLINUX: remove the .img file support; it has been broken
135           on virtually all systems since the beginning, and has been
136           totally broken since 4.00 at least.  Use MEMDISK instead.
137         * chain.c32: Support chaining ReactOS' FreeLdr (Shao Miller)
138         * isohybrid: -m option to add support for Mac EFI booting.
139         * ifmemdsk.c32: Choose boot option based on presence of
140           MEMDISK.
141         * Remove bogus distributed mk-lba-img binary.
142         * The Syslinux project has a new, cool logo by Abi
143           "ixxvil" Rasheed (doc/logo/*).
145 Changes in 4.04:
146         * PXELINUX: Fix handling of unqualified DNS names.
147         * PXELINUX: Fix timer bug when PXELINUX might be unloaded
148           (Gene Cumm).
149         * core/writedec.inc: Fix duplicate declaration and overflow
150           (Gene Cumm).
151         * GCC 4.5 fixes.
152         * sample directory: Fix Makefile include (Gene Cumm).
153         * ver.com: New universal DOS/COMBOOT application to display
154           version information (includes DRMK) (Gene Cumm).
155         * rosh.c32: updated; Using getopt() for internal commands to aid
156           parsing options; Fix bugs in ls; add warm reboot and echo
157           (Gene Cumm).
158         * com32: fix a file descriptor leak.
159         * gfxboot.c32: handle TEXT..ENDTEXT; error out on no LABELs
160           found (Sebastian Herbszt).
161         * Fix booting on non-partitioned devices.
162         * MBR, isohybrid: Workaround for a BIOS issue on Acer
163           Travelmate and possibly other machines.
164         * COM32: Adding ACPI parsing libary
165         * HDT: Release 0.4.1 to support ACPI parsing, 
166           improved mutli-core/cpu reporting 
167         * LUA: Updating to 5.1.4-2
168         * SYSLINUX: core/diskstart.inc: Reset DS after checksum in case
169           it isn't 0 (Gene Cumm).
170         * win64: Script update for additional mingw compiler names
171           (Gene Cumm).
172         * diag: New directory for diagnostic-related tools.  Add a
173           handoff MBR/VBR and geometry display images (Gene Cumm).
174         * MEMDISK: use "mem=" parameter to mark available memory above
175           this point as reserved (core already does alignment) (Gene Cumm).
176         * MEMDISK: Additional disk probe checks and debug output
177           (Shao Miller, Gene Cumm).
178         * gpxe: add gpxelinuxk.0, based off of undionly.kpxe + new
179           script (Gene Cumm).
180         * isohybrid: install the isohdpfx*.bin/isohdppx*.bin files to
181           make isohybrid images in one step with GNU xorriso.
182         * PXELINUX: disable a hack that would make localboot work on
183           some machines, but break just about as many.  Some machines
184           which worked with "localboot 0" in previous versions may
185           need "localboot -1" in this one.  If you have a machine
186           which requires "localboot -1", a copy of the dmidecode
187           or sysdump output would be appreciated.
188         * Include a set of diagnostics by Gene Cumm.
189         * Fixes for gcc 4.6 and binutils 2.21.51.
190         * chain.c32: Allow "uuid" as a synonym to "guid".
191         * Handle directory names starting with .. for vfat and
192           iso9660.
193         * New MENU HIDDENKEY command to provide a one-keystroke way to
194           activate a boot option from a hidden menu intro screen.
196 Changes in 4.03:
197         * Don't hang if no configuration file is found.
198         * Better support for booting from MBRs which don't pass
199           handover information.
200         * EXTLINUX: Try to be smarter about finding the partition
201           offset.
202         * chain.c32: support chainloading Dell Real Mode Kernel (Gene
203           Cumm).
204         * chain.c32: fix booting in CHS mode.
205         * rosh.c32 updated (Gene Cumm).
206         * Fix the -s option to the syslinux/extlinux installer (Arwin
207           Vosselman).
208         * isohybrid: fix padding of large images (PJ Pandit).
210 Changes in 4.02:
211         * SYSLINUX: correctly handle the case where the -d option is
212           specified with a non-absolute path, i.e. "syslinux -d
213           syslinux" instead of "syslinux -d /syslinux".
214         * ISOLINUX: recognize the directory names /boot/syslinux and
215           /syslinux, and the filename syslinux.cfg in addition to the
216           isolinux-specific names.  Thus, "syslinux.cfg" is now a
217           generic name, whereas "isolinux.cfg" or "extlinux.conf" is
218           specific to different derivative.
219         * chain.c32: support setting alternate config filename for
220           stage2 of GRUB Legacy (Gert Hulselmans).
221         * whichsys.c32: execute specific command, based on Syslinux
222           bootloader variant (Gert Hulselmans).
223         * lua.c32: a lot of new bindings added to the "syslinux"
224           namespace: VESA, PCI, DMI, kernel loading (Marcel Ritter).
225         * btrfs: print a comprehensive error message if compressed or
226           encrypted files are encountered (neither is currently
227           supported.)
228         * SYSLINUX: mtools installer: honor TMPDIR, error out on disk
229           full.
230         * Handle fallbacks from EDD to CHS, to deal with systems which
231           announce EDD support but don't actually have it.
232         * SYSLINUX: the mtools, DOS and win32 installers now use the new
233           command line options.
234         * PXELINUX: fix the use of IP addresses in TFTP :: or tftp://
235           host syntax.
236         * SYSLINUX: experimental Win64 installer (syslinux64.exe).
238 Changes in 4.01:
239         * ISOLINUX: fix initialization on systems which don't zero
240           low memory.
241         * SYSLINUX/EXTLINUX: fix handing of disk read retries in
242           EDD mode.
243         * ISOLINUX: change the initialization sequence to avoid
244           problems with certain (old) BIOSes.  Special thanks to
245           Helmut Hullen for invaluable debugging support.
246         * ifplop.c32: new module which detects if the PLoP Boot Loader
247           already has booted a CDROM or USB drive (Gert Hulselmans).
248         * Correct a severe memory overwrite bug, triggered primarily
249           when selecting a very long command line in the menu system.
250         * lua.c32: Lua script interpreter, currently experimental
251           (Alexey Zaytsev, Marcel Ritter, Geert Stappers).
252         * PXELINUX: new option IPAPPEND 4 to append the system UUID to
253           the kernel command line.
254         * PXELINUX: display BOOTIF and SYSUUID at startup time, and
255           when Ctrl-N is pressed on the command line.
257 Changes in 4.00:
258         * Major code base changes; all filesystem rewritten in C.
259           This work was done primarily by Liu Aleaxander (Yuanhan Liu).
260         * EXTLINUX: btrfs and ext4 support.  btrfs support was done by
261           Alek Du of Intel.
262         * EXTLINUX is no longer a separate derivative; extlinux and
263           syslinux both install the same loader (ldlinux.sys); for the
264           Linux-based installers the extlinux binary is used for a
265           mounted filesystem; the syslinux binary for an unmounted
266           filesystem.
267         * When loading a new configuration file with the CONFIG
268           command, one can now also specify a new current directory
269           with an APPEND statement.
270         * Full ADV support for Syslinux, to boot-once and MENU SAVE
271           works.
272         * Full support of GPT-partitioned disks, including disks
273           and/or parititions larger than 2 TiB (if supported by BIOS.)
274         * The GPT handover protocol adjusted to the current T13
275           committee draft; see doc/gpt.txt.
276         * HDT: code cleanup, small bugfixes
277         * The "linux" syslinux installer (syslinux-nomtools) now has a
278           command-line syntax closer to the extlinux installer.  The
279           mtools, dos and win32 installers will get this new syntax
280           eventually, but it is not implemented yet.
281         * chain.c32: support booting GPT partitions by index, GUID, label.
282         * chain.c32: support booting the Syslinux partition with "fs".
283         * chain.c32: implement gpt.txt hand-over protocol.
284         * chain.c32: support for chainloading Grub stage 2.
285         * PXELINUX: TFTP URL syntax (tftp://) supported even when not
286           running gPXE/gpxelinux.
287         * New ls.c32 module to display the contents of the disk from
288           the command line, and pwd.c32 to display the current
289           directory.
290         * rosh.c32 (read only shell) updated and hopefully usable.
291         * PXELINUX: Support "localboot -1", just like the other
292           derivatives.
293         * gfxboot.com removed in favor of gfxboot.c32.
294         * New MENU HELP statement to display fullscreen help text as a
295           result of a menu selection.
296         * memdiskfind utility that can be used with the phram driver
297           in the Linux kernel to mount a memdisk.
298         * ifcpu.c32: Adding usage when no parameters are given, 
299           adding PAE support.
300         * ifcpu.c32, ifcpu64.c32: handle more than one argument per
301           target.
302         * isohybrid: C version which does not require Perl.
303         * New command MENU IMMEDIATE to permit hotkeys to activate
304           immediately without needing Enter.
305         * mdiskchk.com supports a --no-sequential (or -n) option to
306           suppress the classic all-drive-probing heuristic.  Useful
307           on BIOSes who crash/hang when certain drive numbers are
308           probed.
309         * ElTorito.Sys DOS driver now scans drive numbers upwards
310           instead of downwards, in order to avoid a fairly common
311           bug on some BIOSes where probing drive 0xFF causes a
312           failure.
313         * NASM 2.03 or later required to build.  2.07 or later
314           recommended.
316 Changes in 3.86:
317         * chain.c32: fix chainloading the MBR of a hard disk (broken
318           in 3.85).
319         * mboot.c32: report the boot loader name in the information
320           structure.
321         * com32: set argv[0] in a com32 module.
322         * core: add a workaround for a bug in Xen HVM older than
323           version 3.3: disable halt on those platforms.
324         * Fix problems where certain operations in com32 modules would
325           cause the core to believe the system was idle.
326         * MEMDISK: fix MBR detection when used with a DOSEMU header or
327           an offset.
328         * MEMDISK: generate the mBFT checksum correctly.
330 Changes in 3.85:
331         * gPXELINUX: updated to gPXE 1.0.0.  gPXELINUX can now do NBP
332           chainloading, and does not require a second DHCP.
333         * vesamenu.c32: unbreak the default "grey hole" background.
334         * We no longer have a built-in default of "linux auto".
335           Instead, if no DEFAULT or UI statement is found, or the
336           configuration file is missing entirely, we drop to the boot:
337           prompt with an error message (if NOESCAPE is set, we stop
338           with a "boot failed" message; this is also the case for
339           PXELINUX if the configuration file is not found.)
340         * chain.c32: support chainloading Grub4DOS; patch by Gert
341           Hulselmans.
342         * New tool: sysdump.c32, can be used to produce system
343           information for debugging via tftp or ymodem (serial port).
344         * "vga=current" on the Linux command line is now supported.
345         * chain.c32: support for Windows Recovery Console, via the
346           "cmldr=" option.
347         * chain.c32: should now support loading NTLDR from different
348           type media than loaded from.
349         * chain.c32: support chainloading to a FAT/NTFS partition with
350           invalid "hidden sectors" via the "sethidden" option.
351         * memdisk: fix the mBFT ACPI table.
352         * vesamenu.c32: if the image is smaller than the screen, tile
353           it across the whole screen.
354         * mkdiskimage: -s option for producing a sparse image.
355         * vesamenu.c32: support arbitrary resolution setting (beyond
356           BIOS support) on some Intel-based video chipsets.  This code
357           is a modified version of the "915resolution" tool by
358           Steve Tomljenovic; your mileage might vary.
359           
360 Changes in 3.84:
361         * SYSLINUX: make the DOS installer work for MS-DOS 7.x/8.x
362           (Win9x/ME) again.
363         * HDT: updated to version 0.3.6 (numerous changes.)
364         * mboot.c32: now supports video mode setting if requested by
365           the image.
366         * MEMDISK: Fix floppy images of PC-DOS.
367         * MEMDISK: Add support for emulation of CD-ROM images; patch
368           by Shao Miller.
369         * MEMDISK: Comply with the Win9x "safe hook" standard,
370           allowing a protected-mode driver.
371         * MEMDISK: New "mBFT" ACPI table, by analogy with the iSCSI
372           iBFT table.  This allows detection from a protected-mode
373           operating system without EDD support.
374         * 32-bit version of the gfxboot loader (gfxboot.c32), so far
375           experimental.  This will replace gfxboot.com in the future.
376         * vesamenu.c32: new MENU RESOLUTION directive to set a screen
377           resolution other than 640x480.
378         * chain.c32: add support for loading isolinux.bin.
379         * chain.c32: make sure to always return to text mode.
380         * eltorito.sys: DOS driver for generic CD-ROMs; by Gary Tong
381           and Bart Lagerweij.
383 Changes in 3.83:
384         * PXELINUX: clear memory before handing over to a chainloaded
385           NBP.  This may help avoid a bug in Windows RIS.
386         * PXELINUX: fix localboot after NBP chainloading on certain
387           BIOSes (including ASUS A8N-E, but possibly others.)
388         * chain.c32: support chainloaded bootloaders on ISOLINUX.
389         * PXELINUX: allow filenames up to 251 characters.
390         * MEMDISK: fix problems booting from USB on Thinkpads, and
391           possibly other machines or hardware combinations.
392         * isohybrid: fix the -id option.
393         * HDT: updated to version 0.3.4.
394         * MEMDISK: the stack size is now configurable, with the stack=
395           option.
396         * Simple menu: fix Ctrl-W (word erase) in command-line edit.
397         * Simple menu: fix crash on some platforms.
398         * Gfxboot: fixes to the configuration file parsing.
399         * PXELINUX: add a tool to override specific DHCP options via
400           values hardcoded in the pxelinux.0 file.  These hardcoded
401           values can be either "before DHCP" (defaults if DHCP do not
402           provide values), or "after DHCP" (overrides DHCP).  The tool
403           pxelinux-options can be used to set these options.  This
404           feature does not apply to gpxelinux.0; when used with gPXE
405           this is better handled by modifying the embedded script.
407 Changes in 3.82:
408         * isohybrid: fix the -partok logic for loading from a partition.
409         * ISOLINUX: deal with systems which return from INT 13h with
410           interrupts disabled.
411         * Do not invoke the idle handler during large file loads.
412         * Simple menu: make ONTIMEOUT work with MENU HIDDEN.
413         * PXELINUX: handle TFTP servers which have extra NULs at the
414           end of an OACK packet.
416 Changes in 3.81:
417         * Shuffler: fix bug in real-mode entry.  This affected a
418           number of modules, probably in relatively unimportant ways,
419           but it completely broke linux.c32.
420         * Improved performance.
421         * Attempt to halt the processor while idle.  This can cause
422           bad reponsiveness when using a serial console especially for
423           automated input; if that ends up being a problem, use the
424           new "NOHALT 1" configuration command.
425         * linux.c32 now suppresses all messages if the "quiet" flag is
426           specified.
427         * isohybrid: add a variety of options, and a help message.
428         * ISOLINUX: fix booting in hybrid mode when CBIOS is used.
429           This unfortunately means that the isohybrid handoff protocol
430           has changed, so the isohybrid utility must version-match
431           isolinux.bin.
432         * Drop support for ACPI 3 extended memory flags.
433         * Menu system: don't set the autocr flag on the serial
434           console.
435         * altmbr: fix handling of logical partitions.
436         * altmbr: cap at 439 bytes so the partition select byte isn't
437           part of the file.
439 Changes in 3.80:
440         * New shuffler mechanism and API.
441         * Rewritten mboot.c32 module.
442         * The syslinux_boot_linux() function has been simplified.
443         * Don't hang trying to boot a "menu quit" label from the CLI.
444         * Fix problem with boot-once "sticking" on some BIOSes.
445         * isohybrid: fix problem with images over 2 GB in size.
446         * APM poweroff module (poweroff.com) by Sebastian Herbszt.
447         * ISOLINUX: fix the handling of large directories.  Bug found
448           and fixed by Steffen Winterfeldt.
450 Changes in 3.75:
451         * PXELINUX: fix the "keeppxe" option, which was broken in
452           3.74.
453         * MEMDISK: correct the extraction of geometry information from
454           the MBR of a hard disk image, again broken in 3.74.
455         * extlinux(1) man page from Brian Pellin.
456         * Simple menu: MENU SAVE is now controllable on a menu-by-menu
457           or entry-by-entry basis.
458         * gPXELINUX: fix interrupt-disabling bug.
459         * HDT: fix lockup on machines with certain PCI configurations.
461 Changes in 3.74:
462         * New UI directive, which allows a more natural way to specify
463           a menu system (or not.)  With the UI directive specifying
464           the menu system, the DEFAULT directive can be used to select
465           the default entry inside the menus.
466         * kbdmap.c32: new module to load a new keyboard map
467           dynamically.
468         * isohybrid: workaround bug in some versions of binutils.
469         * Fix issue with the placement of the initrd on some machines.
470         * ifcpu64: fix handling of less than three arguments.
471         * Fix bug in the shuffle library when dealing with a very
472           large number of fragments.
473         * Documentation fixes by Vicente Jimenez Aguilar.
474         * gPXE updated to version 0.9.7.
475         * hdt.c32: Hardware Detection Tool, an interactive hardware
476           analyzer module by Erwan Velu.
477         * MEMDISK: enable automatic determination of the disk geometry
478           for a large floppy disk image if (and only if) it is
479           formatted with a FAT filesystem.
480         * SYSLINUX: fix the handling of .bss files on FAT12/16.
481         * Suppress the Loading ... message if "quiet" is specified on
482           the kernel command line.
483         * Fix the use of "CONSOLE 0" with menu.c32.
484         * Allow COM32 modules to be aware of all memory even in the
485           presence of a memory hole.  The "linux.c32" module can be
486           used to load a kernel (or memdisk) plus large initrd on
487           such a system.
488         * MBR: produce alternate MBR variants which force the drive
489           number to hd0 (_f variants), or force the drive number to
490           hd0 if the Ctrl key is pressed (_c variants.)  Furthermore,
491           add an MBR variant (altmbr*.bin) which ignores the active
492           flag and instead boots the partition number specified in the
493           byte at offset 439 decimal.
494         * Add IPAPPEND strings to com32 modules, especially needed for
495           linux.c32.
496         * New MENU SAVE directive which saves the latest menu
497           selection until the next boot.  Currently only implemented for
498           EXTLINUX.
499         * gfxboot.com: *experimental* interface module to Steffen
500           Winterfeldt's "gfxboot" graphical front end
501           (http://gfxboot.sourceforge.net/).  Module by Sebastian Herbszt.
503 Changes in 3.73:
504         * Upgrade gPXE to release version 0.9.5.
505         * Fix a number of build errors on various platforms.
506         * Handle systems with E820 "extended attributes" per ACPI 3.
507           Someone "cleverly" decided to change the E820 spec in a
508           backwards-incompatible manner!
509         * MEMDISK: default to "safeint".
510         * Adopt the moniker "The Syslinux Project", standard proper
511           noun capitalization, to refer to the project as a whole.
512           Thus, reserve the all-caps "SYSLINUX" to refer to the FAT
513           loader.
514         * mboot.c32: add "-solaris" option to pass DHCP information to
515           the Solaris kernel; required for automatic Solaris boot
516           without using Solaris' pxeboot program.
517         * config.c32: trivial COM32 module to restart Syslinux with
518           another configuration file from the command line (equivalent
519           to the CONFIG command in the configuratin file.)
521 Changes in 3.72:
522         * Include the pxechain.com module from Jeffery Hutzelman at
523           Carnegie Mellon University.  This allows chaining another
524           PXE boot program while changing the DHCP packet passed to
525           it.
526         * Reorganize the Makefile system.
527         * Major PCI core cleanups and other source cleanup.
528         * gPXE code updated.
529         * Try to avoid memory-snooping attacks on passwords.  Note
530           that if someone has root on the box, they generally don't
531           need to compromise the boot loader...
532         * ISOLINUX: fix crash when given a zero-length file.
533         * sdi.c32: support gzipped SDI images.
534         * ISOLINUX: support generating images which can be either
535           a CD-ROM or a hard disk (USB disk, etc.)  See
536           doc/isolinux.txt for more information.
537         * Remote gdb support for COM32 modules; patch from Stefan
538           Hajnoczi.
539         * Support beeps in F-key help in the simple menu system.
540         * Tab display of labels, based on a patch from Sebastian
541           Herbszt.  Can be disabled with the NOCOMPLETE configuration
542           command.
543         * "menu default" can now be specified after "menu begin", to
544           indicate that a specific submenu should be the default entry.
546 Changes in 3.71:
547         * Workaround for a VESA BIOS which tries to make DOS system
548           calls(!!)
549         * Simple menu: fix navigation around disabled entries
550           (or at least try to...)
551         * EXTLINUX: proper error message when confused about mount
552           point.
553         * MEMDISK: be smarter about incompletely disabled floppies in
554           the BIOS and about being the only floppy.
555         * Optionally allow initrd to be specified on a separate line
556           rather than as part of the "append" line.  This is not
557           recommended, but apparently makes life easier for some
558           tools.
559         * SYSLINUX: if no config file is present, set the current
560           directory to the root directory (Sebastian Herbszt).
561         * chain.c32: option "hide" to support hiding and unhiding of
562           primary partitions on the boot drive with DOS, Win, or OS/2
563           partition types (01, 04, 06, 07, 0b, 0c, 0e).
564         * Unbreak the KBDMAP command (broken in 3.70).
565         * EXTLINUX: fix the handling of the ADV when using CBIOS.
566         * ifcpu64.c32: simple COM32 module to select a 32- or 64-bit
567           kernel (and optionally 32-bit kernels with or without PAE.)
568           Eventually we want a scripting language for this
569           kind of stuff; a Lua module is under development.
570         * Fix parsing of the SERIAL command without a baud rate
571           specified.
572         * chain.c32: error out when try to boot an unbootable
573           partition.
574         * SYSLINUX: when building the Win32 installer, search for
575           MinGW under a large number of possible names.
577 Changes in 3.70:
578         * PXELINUX: Support enhanced capabilities when running on top
579           of gPXE (http://www.etherboot.org/).  In particular, support
580           URL-style syntax for filenames, and any protocol that gPXE
581           supports (except, currently, iSCSI and AoE.)  This feature
582           is currently highly experimental.
583         * Substantial infrastructure changes to support files whose
584           length aren't known at open time (typically network
585           connections.)  Please note that the semantics of some of the
586           comboot APIs have changed slightly; please see doc/comboot.txt.
587         * PXELINUX: We no longer require a TFTP server which supports
588           the tsize option for all transfers.
589         * PXELINUX: Integrate with the gPXE source base; unified image
590           now included as "gpxelinux.0".
591         * The source tree has been restructured; files that were
592           previously in the root have moved into the core, dos, gpxe,
593           and utils directories.
594         * "make install", "make netinstall", and "make extbootinstall"
595           have been updated massively.  "make install-all" now installs
596           all three.
597         * Change default dir for auxiliary files from
598           /usr/lib/syslinux to /usr/share/syslinux.
599         * SYSLINUX: VFAT long filename support.
600         * MEMDISK: Any image less than 4096K (4 MB) is treated as a
601           floppy disk.  The geometry-guessing code will recognize all
602           common extended formats, but it is still possible some very
603           exotic formats need geometry specification.  Large floppies
604           and very small harddisks still need explicit specification.
605         * chain.c32: option "swap" to support swapping of BIOS drive
606           numbers.  This is necessary to boot certain operating systems
607           (DOS, Windows) from a secondary drive.
608         * chain.c32: option "file=" to support loading a boot file from
609           the SYSLINUX filesystem instead of loading the boot sector
610           from the drive.
611         * chain.c32: option "seg=" to control the load location.
612         * chain.c32: option "ntldr=" as a shorthand for "seg=0x2000
613           file="; use this to load one of WinNT's loaders:
615           chain.c32 hd0 1 ntldr=/MiniNT/setupldr.bin
617           Note that the file needs to be in the SYSLINUX filesystem.
618         * chain.32: options "freedos=" and "msdos="/"pcdos=" as
619           shorthands for "seg=0x60 file=" and "seg=0x70 file="
620           respectively; use this to load FreeDOS's kernel.sys, MS-DOS's
621           io.sys or PC-DOS's ibmbio.sys.
622         * Change to the A20 algorithm which *MIGHT* help systems that
623           have systems which freeze when Syslinux is used with USB
624           keyboards.  Note that this has been hard do verify, so I
625           would greatly appreciate feedback on it.
626         * Complex menu system: unbreak menus which has unnamed
627           submenus, like complex.c.
628         * Fix newline on the serial port for some com32 modules.
629         * chain.c32: support "boot" as the drive specification,
630           indicating the drive from which it was booted
631           (for syslinux/extlinux).
632         * SYSLINUX/EXTLINUX: support "localboot" with the same feature
633           set as ISOLINUX.
634         * Add an experimental MBR for GPT partition tables.
635         * Use $(CC) when determining compile flags.
636         * chain.c32: fix booting from logical partitions (Sergey
637           Vlasov.)
639 Changes in 3.63:
640         * Fix errors in the PCI and DMI detection modules (Erwan Velu,
641           Sebastian Herbszt).
642         * Fix host dependencies and other issues in the build system.
643         * PXELINUX: Allow class E addresses as unicast.
644         * sdi.c32: module to load Microsoft System Deployment Images.
645           For additional information, please see:
646             http://msdn2.microsoft.com/en-us/library/ms838543.aspx
647         * EXTLINUX: Correct reading directories with deleted entries.
648         * Shuffle library: correct the handling of certain geometries
649           (an upward move with source material blocking the move); as
650           required by sdi.c32 but theoretically possible for other
651           formats as well.
652         * Add "make netinstall" to install /tftpboot.
653         * Fix some documentation files that didn't get moved/renamed.
655 Changes in 3.62:
656         * Clean up garbage after "aborted." message.
657         * Clean up memdump.com filenames.
658         * Support SHA256 and SHA512 encrypted passwords.
659         * The shuffle library now can generate chained descriptors,
660           thus allowing pretty much arbitrarily complex memory maps.
661         * Handle command lines up to 2047 characters, the current
662           Linux kernel limit.
663         * vesamenu: support systems without linear framebuffer support
664           (sigh, what is this, 1993?) and 15-bit RGB modes.
665         * Move the label storage (for the command-line interface) to
666           high memory, removing the size limit and freeing up 64K of
667           low memory.
668         * Get rid of 4096-entry limit in the simple menu system.
669         * New hierarchial submenu support: see MENU BEGIN, MENU END,
670           MENU GOTO in doc/menu.txt.
671         * MENU QUIT allows creating a menu entry for returning to the
672           command line.
673         * ISOLINUX: Work around bug in certain Adaptec BIOSes,
674           patch by Bruce Robson.
675         * pngtopnm dependency removed from samples/ directory.
676         * Text documentation files (in doc/) renamed *.doc -> *.txt.
678 Changes in 3.61:
679         * EXTLINUX: fix crash when accessing an empty file.
680         * elf.c32: If a PHDR segment is present, load it.
681         * Fix SHA-1 and MD5 passwords.
682         * ISOLINUX: fix booting when mastered without
683           mkisofs -boot-info-table (broken since 3.50, sigh...)
684         * Handle BIOSes which emit multiple contiguous valid
685           memory regions in the e820 map.
687 Changes in 3.60:
688         * Support for "auxilliary data vector", a small amount of
689           writable storage.  Currently only supported for EXTLINUX,
690           but the infrastructure is there for the other derivatives,
691           assuming a suitable storage location can be found.
692         * EXTLINUX: boot-once support (--once, --clear-once, and
693           --reset-adv).
694         * A command is now required to the EXTLINUX installer, i.e. at
695           least one of --install, --update, --once, --clear-once, or
696           --reset-adv.
698 Changes in 3.55:
699         * PXELINUX: as per RFC 5071, PXELINUX no longer requires the
700           use of the magic cookie option (208) for unencapsulated
701           options.  Currently it does not require it for
702           vendor-encapsulated options (vendor-option-space) either,
703           but that MAY be reverted in the future if it causes
704           problems.
705         * Documentation text files moved to a common "doc" directory;
706           man pages from the Debian project added to the "man"
707           directory.
708         * Correct bug with self-overlapping memory areas when using
709           the shuffle interface.
711 Changes in 3.54:
712         * Add "menu separator", "menu indent", "menu disabled"
713           (see README.menu).
714         * vesamenu: fix handing of VESA modes with noncontiguous
715           memory buffers.  In particular, Qemu/KVM sets up such a mode
716           when Cirrus Logic emulation is enabled (which is the
717           default.)
718         * Support for calling real mode functions using far calls,
719           with argument on the stack.  This was implemented to support
720           the BIOS BBS specification, but subsequent experiments show
721           that the at least one of the most common BIOS cores, Award,
722           passes the presence check but doesn't actually implement the
723           functionality.
725 Changes in 3.53:
726         * Fix bugs related to the $PnP BIOS functionality on some
727           platforms.
728         * PXELINUX: Fix the "naked" version of :: (suppress prefix.)
729         * elf.c32: better error messages.
730         * Faster operation under Intel VT virtualization.
731         * PXELINUX: Fix DHCP bootfile option.
732         * mkdiskimage: Support more than 1024 cylinders.
733         * (Hopefully) fix installer on non-x86 platforms.
734         * Fix shuffle_and_boot_rm, used by linux.c32.
735         * Fix shuffle_and_boot_pm on 386/486.
736         * ISOLINUX (at least): fix bss memory overwrite hang.
737         * MBR: Fix booting from logical partitions.
738         * Code cleanups.
740 Changes in 3.52:
741         * Handle capitalized F-key commands in the menu system.
742         * Fix padding error when loading multiple ramdisks.
743         * Workaround for VMware crashing when trying to print a
744           message during early kernel boot (does not seem to work,
745           consider deleting.)
746         * chain.c32: add the ability to search for a specific MBR
747           signature at runtime.
748         * Fall back to the server identity option if the siaddr field
749           in the DHCP header isn't set.  This seems to match the
750           behaviour of most PXE stacks.
751         * mkdiskimage: give the generated disk image an MBR signature.
752         * MEMDISK: Fix failures on some BIOSes.
753         * Simple menu system: new "MENU HIDDEN" option to not display
754           the menu unless the user presses a key.
755         * Simple menu system: support MD5-encrypted passwords (modern
756           Unix standard style, with "$1$" prefixes.)
757         * pcitest.c32: now functions as a full "lspci".  Thanks to
758           Erwan Velu for this work.
759         * MEMDISK: Make EDD actually work.
760         * ISOLINUX: Fix for certain broken CD-ROM BIOSes which
761           randomly corrupted register FS.
762         * Simple menu system: fix memory overwrite bug that caused
763           some systems to lock up or behave weirdly.
764         * Fix building on 64-bit systems without a 32-bit libc installed.
766 Changes in 3.51:
767         * EXTLINUX: Fix failure to find the configuration file.
769 Changes in 3.50:
770         * New keywords allow the type of file to be specified in the
771           configuration file.
772         * It is now supported to load a different configuration file
773           with the CONFIG keyword.
774         * Fix API call 0x0019 (Read Disk.)
775         * MENU AUTOBOOT, MENU TABMSG, MENU PASSPROMPT allows
776           internationalization of menu messages.
777         * A new feature, TEXT HELP, allows the administrator to set
778           a multi-line help message for individual selections.
779         * Fix API call 0x0012 (Cleanup, shuffle and boot.)
780         * New API call "Cleanup, shuffle and boot to flat protected mode"
781         * New API call "Cleanup, shuffle and boot to real mode",
782           similar to API call 0x0012 but allows arbitrary register setting.
783         * Introduce a library interface for loading arbitrary binary
784           formats with relatively easily understood code.  See
785           the elf.c32 module for an example on how to use it.
786         * New module "elf.c32", to load a protected-mode ELF kernel.
787         * MBR (old and new): Fix bug in CHS mode when LBA >
788           65535*sectors.
789         * vesamenu: fix decoding of palettized PNG images.
790         * Update the Linux kernel boot protocol.
791         * PXELINUX: Press Ctrl-N at the boot prompt to read out the
792           network info.
793         * Instead of the (non-existent) MAC, use the client identifier
794           for networks like Infiniband and Firewire/1394.
795         * Add a new INCLUDE command to the core syslinux parser.
796         * Allow binding help text to F11 and F12.
797         * F-key help now available in the simple menu system.
798         * Disabled the polling for ARP during idle.  It is simply too
799           slow on some (broken!) PXE stacks.
800         * PXELINUX: also try to fetch the config file based on UUID.
801         * SYSLINUX/EXTLINUX: New RAID mode (-r) which calls the BIOS
802           to load the next device (typically the next drive) on boot
803           failure.
805 Changes in 3.36:
806         * MEMDISK: Disable EDD by default on floppy disks.  EDD can be
807           enabled with the "edd" option and disabled with "noedd".
808           This (hopefully) should make Ghost work again.
809         * SYSLINUX: "unix" installer now uses Linux ioctls instead of
810           using libfat.
811         * New MBR which can boot from logical partitions.
812         * SYSLINUX: Fix bug in detecting special extensions which was
813           introduced in 3.35 :(
814         * PXELINUX: Unbreak chainbooting FreeBSD (and possibly others.)
816 Changes in 3.35:
817         * MEMDISK: New "safeint" mode.
818         * MEMDISK: Be more compliant with the PnP BIOS spec.
819         * MEMDISK: Turn on EDD support by default.
820         * MEMDISK: Try to work on some machines on which it would not
821           work when there was no floppy drive in the system.
822         * Simple menu system: fix serial console support (broken in
823           3.30).
824         * SYSLINUX: Support subdirectories.  Like ISOLINUX, the
825           "current directory" is the directory in which syslinux.cfg
826           is found; this is searched for in the sequence
827           /boot/syslinux, /syslinux, /.  As a side benefit, label names
828           like "linux-2.6.18" and "linux-2.6.19" are now supported.
830           To install ldlinux.sys in a subdirectory, pass the -d
831           directory option to the SYSLINUX installer.
833           This work was sponsored by slax.org (thanks, Tomas!)
834         * New API call: read disk.
835         * Invoke ONERROR on initrd load failure.
837 Changes in 3.31:
838         * The simple menu system (menu.c32 and vesamenu.c32) now
839           support loading more than one configuration file at a time,
840           using MENU INCLUDE or by specifying multiple filenames.
841         * The MENU COLOR statement can now control the shadowing mode.
843 Changes in 3.30:
844         * libcom32 extended to support graphics mode and graphical console.
845         * vesamenu.c32, new graphical version of the Simple
846           Menu System, see README.menu.
847         * New com32 modules by Erwan Velu do selection based on CPUID
848           or PCI devices present.
849         * RPM spec: add syslinux-tftpboot module; move syslinux by
850           default to the /usr/share/syslinux directory.
851         * RPM spec: extlinux is now a separate package.
853 Changes in 3.20:
854         * EXTLINUX: New options --install (-i) and --update (-U), to
855           make it clear if a boot loader should be installed or
856           updated.  For now, defaults to --install for compatibility;
857           a future version will require one of these options.
858         * New library functions to load and place files in memory.
859         * mboot.c32 bug fixes.
860         * Remove 8 MB kernel size restriction.
861         * Add "klibc" target for building unix/syslinux and
862           extlinux/extlinux with klcc (klibc-1.4.27 or later.)
863         * PXELINUX: Fail (and eventually reboot) if no configuration
864           file was found.
865         * COM32 module by Erwan Velu to make decisions based on DMI
866           info.
867         * Fix issue where going back and forth between menus a lot
868           would cause a hang.
869         * ISOLINUX: Fix bug which made "cd boot sectors" not work.
871 Changes in 3.11:
872         * MEMDISK: Fix bug by which accessing the real floppy disk
873           as B: in MS-DOS was broken.
874         * Simple menu system: allow tweaking of the screen layout.
875         * Simple menu system: better command-line editing, correctly
876           handle command lines above 256 characters.
877         * PXELINUX: revert memory allocation change that caused
878           problems on some network cards.
879         * MEMDISK: Try work around a bug on some BIOSes when no
880           physical floppy disk is present in the system.
881         * Enable the 16550A FIFOs, if present, when doing serial
882           console.
883         * New "totaltimeout" command establishes a timeout without
884           regard for any user input.
885         * Simple menu system: timeout behaviour now more in line with
886           user expectations.
887         * Simple menu system: "ontimeout" should now work correctly.
889 Changes in 3.10:
890         * gcc 4.0.1 compilation fixes.
891         * Add support for querying the PCI BIOS in libcom32
892           (used by ethersel et al.)
893         * Fix PCI handing (ethersel etc) on several old chipsets (and
894           VMWare.)
895         * Try to deal with systems with broken EBIOS.
896         * New API call to do "localboot".
897         * New API call to query features.
898         * New API call to run kernel image, a lower-level call than
899           "run command".  See comboot.doc.
900         * Fix for bug in EBIOS code discovered by Arwin Vosselman.
901         * NOESCAPE security fix.
902         * Comments are now recognized even without a space following #.
903         * Fix incorrect handling of mixes of entries with and without
904           MENU PASSWD.
905         * The idle API call now harmlessly returns failure if it is a
906           no-op.  That way the caller can decide whether or not to
907           bother invoking it again.
908         * Temporarily disable the idle API call on PXELINUX, due to
909           some platforms on which the idle API call seems to hang; this
910           problem has not yet been debugged.
911         * MEMDISK: the handling of DOSEMU-headered images was broken;
912           fix it.
913         * EXTLINUX: symlinks are now supported.
914         * Simple menu system: N and P now work correctly as hotkeys.
915         * MEMDISK: more BIOS bug workarounds.
917 Changes in 3.09:
918         * gcc4 compilation fix.
919         * <BEL> (Ctrl-G) in message files now causes a beep.
920         * Reduce the command line to 511 characters; 1023 caused
921           memory overflows.
923 Changes in 3.08:
924         * SYSLINUX: Fix performance regression (-s mode always
925           enabled.)
926         * Add API function for idle loop.
927         * libutil: Add do_idle() function for idle loop, make
928           get_key() use it.
929         * libutil: Add SHA-1 and base64 functions.
930         * Simple menu system: add password support.
931         * EXTLINUX: Sparse files now handled correctly.
932         * EXTLINUX: Large directories now handled correctly.
933         * ALL: At the prompt, Ctrl-X now forces text mode.
934         * Fix configuration file parsing error, that could cause
935           hangs.
936         * Rewritten advanced menuing system from Murali Ganapathy.
937         * MEMDISK: New "bigraw" mode to work around certain broken
938           BIOS flash programs.
939         * COM32 module to boot Multiboot systems, including Xen.  See
940           com32/modules/mboot.doc.
941         * Max command line changed to 1023 characters.  Note that the
942           kernel proper still can only handle 255 characters without
943           patching, and COM16 binaries can only handle 125 characters.
945 Changes in 3.07:
946         * Fix chainloading (chain.c32).
947         * Fix zlib build problem.
948         * Use a private copy of <linux/ext2_fs.h>.
950 Changes in 3.06:
951         * Fix typo that caused the ramdisk to load in the wrong place.
953 Changes in 3.05:
954         * New API function "shuffle and boot"; allows COM32 modules to
955           load or construct (almost) arbitrarily complex objects,
956           e.g. a kernel and its initrd/initramfs in pieces, and have
957           the API core reorganize memory for booting.  (A library API
958           for this function will be introduced in a later version.)
959         * The initrd= option now supports multiple filenames separated
960           by commas.  This is mostly useful for initramfs, which can
961           be composed of multiple separate cpio or cpio.gz archives.
962           (Note: all files except the last one are zero-padded to a 4K
963           page boundary.  This should not affect initramfs.)
964         * EXTLINUX: Fix API function 000Ah (get derivative-specific
965           info).
966         * libcom32/ethersel: Support PCI Config Mechanism #2 on
967           machines still infested with that hideous old hack.
968         * SYSLINUX: Fix directory-parsing bug.
970 Changes in 3.02:
971         * SYSLINUX: The "unix" installer now sets the MS-DOS
972           attributes (hidden, system, readonly.)
973         * COM32 library: build the .lnx (test modules for running
974           under Linux) as architecture native modules, in case
975           i386 devel libraries aren't installed.
976         * EXTLINUX: Hack for systems which don't have BLKGETSIZE64
977           defined in the standard header files.
978         * Simple menu system: minor aestetic improvements, and try to
979           work better over a serial console (speed, and readability on
980           monochrome terminal emulators.)
981         * New CONSOLE directive to control output on the video console
982           (useful for dealing with some broken serial-forwarding
983           BIOSes.)
984         * New com32 module "ethersel" for searching for an Ethernet
985           card and selecting the proper version of Etherboot.
986         * EXTLINUX: Allow the user to override the detected geometry.
987           Add help.
989 Changes in 3.01:
990         * EXTLINUX, SYSLINUX: Fix compile errors on some systems.
991         * EXTLINUX: Default to zipdrive geometry (64 heads, 32
992           sectors) if no other geometry can be detected.
994 Changes in 3.00:
995         * SYSLINUX: Support FAT32 and EDD.  As an unfortunate
996           consequence, LDLINUX.SYS is no longer an ordinary file; it
997           is block-mapped at install time, which means it can only be
998           written using the syslinux installers.
999         * SYSLINUX: Reorganize the source code for the installers;
1000           each one of the installers (dos, win32, unix, mtools) is now
1001           built in its own subdirectory.  In particular, "mtools" is
1002           the unprivileged installer which uses mtools; "unix" is the
1003           privileged installer which uses system calls.
1004         * SYSLINUX: Completely rewritten DOS installer in C.
1005         * ALL: "label" statement information is now stored in a
1006           compressed format, which means that a lot more labels are
1007           permitted (500-1000 in a typical configuration, but depends
1008           on the complexity.)
1009         * EXTLINUX: New derivative, which boots from an ext2/ext3
1010           filesystem.
1011         * SYSLINUX: The DOS and Win32 installers can now optionally
1012           write the boot sector to a file instead of the real boot
1013           sector.  This is not supported in the Linux installers,
1014           however.
1015         * ALL: New NOESCAPE command, disables the "hold down the Shift
1016           key to display the prompt" behaviour.
1017         * New simple menu system, as an alternative to the advanced
1018           menu system already present.  See README.menu for details.
1019         * PXELINUX: Filenames can now be prefixed with an IP address
1020           or DNS name plus :: (e.g. 192.0.2.1::filename or
1021           server.domain.com::filename), which downloads a file from an
1022           alternate TFTP server, or just a :: (e.g. ::filename), which
1023           suppresses the common pathname prefix.  See pxelinux.doc.
1024         * SYSLINUX: Add an -m option to the DOS and Win32 installers
1025           to write an MBR and -a to mark the partition SYSLINUX is
1026           being installed on active.
1027         * MEMDISK: Give a way to query the boot loader type while
1028           running MEMDISK; see memdisk/memdisk.doc and
1029           sample/mdiskchk.c.
1030         * mkdiskimage: substantially improved mkdiskimage which, among
1031           other things, can now be used to initialize USB keys as
1032           zipdrives; see README.usbkey for more information.
1034 Changes in 2.13:
1035         * MEMDISK: Fix command-line parsing "brown paper bag" class
1036           bug.
1037         * MEMDISK: Add "raw" mode to support the DOS boot disk from
1038           WinME/XP, which seems to deliberately crash the system
1039           when someone uses the "INT 15h mover" highmem API.
1040         * Make "make install" do something sane for the com32
1041           development environment.
1042         * In the spec file, create a separate -devel RPM for the com32
1043           development environment.
1045 Changes in 2.12:
1046         * Simple C library, based on klibc, for writing COM32
1047           programs.
1048         * Fix the handling of file length in loading of COM32
1049           programs.
1050         * MEMDISK: Work around a linker bug by rearranging the code to
1051           not use the linker for the 16-bit code.
1052         * SYSLINUX: If we're building on a machine without a Win32
1053           (mingw) compiler, just skip building syslinux.exe.
1054         * ISOLINUX: Support non-mkisofs mastering programs, at least
1055           as long as the image is single-session.  For best results,
1056           ISOLINUX should be the only boot loader installed.
1057         * MEMDISK: Allow the user to specify that the simulated disk
1058           should be write-protected.
1060 Changes in 2.11:
1061         * ALL: Add an API call to get the configuration file name.
1062         * SYSLINUX: Fix bug in 2.10 that prevented it from working
1063           correctly for a lot of people.
1064         * SYSLINUX: In the installer, make mtools a bit less fussy.
1065         * Make the menu system compile with newer gcc's.
1067 Changes in 2.10:
1068         * MEMDISK: Handle images compressed with zip as well as with
1069           gzip.  Some Windows-based image tools apparently generate
1070           these kinds of images by default.  Patch by Patrick
1071           LoPresti.
1072         * Major menu improvement from Murali Ganapathy.
1073         * ISOLINUX: Wonderfully sick and brilliant workaround for
1074           severe bugs in certain Award BIOSes; from Knut Petersen.
1075         * SYSLINUX: Fix for the nomtools installed, from Frederic
1076           Pasteleurs.
1077         * PXELINUX: Fix handling of IP numbers in the ranges
1078           100-109 and 200-209.
1079         * ALL: New option "allowoptions" (defaults to 1), which
1080           controls if options are allowed on the command line or not.
1081         * SYSLINUX: Support building under klibc (see the klibc
1082           distribution for details.)
1084 Changes in 2.09:
1085         * SYSLINUX: Remove residual setuid crap from
1086           syslinux-nomtools.
1087         * Handle video pages correctly when using the API functions.
1088         * Handle compiling on an x86-64 platform correctly.
1089         * Menu system from Murali Krishnan Ganapathy; see the menu
1090           directory for information.
1091         * COMBOOT: Allow COMBOOT programs to change screen text mode.
1092         * COMBOOT: Correct the documentation of how to detect
1093           SYSLINUX from COMBOOT!!!!
1094         * COMBOOT: Fix "get key without echo" API function.
1095         * SYSLINUX: Fix bug that affected the API open function.
1096         * ALL: Improve the E820 memory parser, to work around some
1097           buggy BIOSes.
1099 Changes in 2.08:
1100         * Add new configuration command "ontimeout" to allow timeout
1101           to have a different action than just pressing Enter.
1102         * Add new configuration command "onerror" to allow a custom
1103           command to be executed in case the kernel image is not found.
1104         * Fix bugs in the COMBOOT/COM32 command-line parsing.  APPEND
1105           now works with COMBOOT/COM32 images.
1106         * PXELINUX: Poll for ARP requests while sitting at the
1107           prompt.  This makes some boot servers a lot less unhappy.
1108         * PXELINUX: Actually free sockets when we get a failure
1109           (including file not found.)  This bug would cause us to run
1110           out of sockets and thus "go deaf" after a while.
1111         * MEMDISK: Add an API to query for the existence of MEMDISK.
1112         * SYSLINUX: Fix loading boot sectors (.bs/.bss) from floppy
1113           disk.
1114         * .c32 is now one of the extensions searched for
1115           automatically.
1116         * PXELINUX: RFBG.exe seems to randomly overwrite memory
1117           location 0x5700.  Thus, don't use it!
1118         * PXELINUX: Change pathname length max from 63 to 127; change
1119           max vkernels from 128 to 64.
1120         * Support Ctrl-U -> kill entire command line input.
1121         * The "samples" directory contains a (barely at all tested)
1122           chain loading example, chain.c32, which may be used to
1123           chainload local floppy disks and hard disks.  Use with
1124           "chain fdN" or "chain hdN [partition]"; N = 0 for the first
1125           drive of each type.
1127 Changes in 2.07:
1128         * MEMDISK: Workaround for BIOSes which go into a snit when
1129           they get a RESET command for the floppy system when there is
1130           no floppy in the system.
1131         * PXELINUX: Add "ipappend 2", which passes the hardware
1132           address of the boot interface to the kernel as a
1133           command-line option.
1134         * mkdiskimage: fix the generation of the end limit.
1135         * PXELINUX: Fix multiple bugs in chainloading of other NBPs.
1136         * MEMDISK: Fix bug that would occationally cause "ran out of
1137           input data" when using compressed disk images.
1138         * SYSLINUX: Updates for the win32 installer (from Lars Munch.)
1139         * PXELINUX: PXELINUX-specific options are now recognized both
1140           in a vendor-option-space (a.k.a. type 43 encapsulated) as
1141           well as in a site-option-space (unencapsulated.)
1142         * COM32: Don't crash when DS != 0.
1143         * COMBOOT/COM32: Make file reading work correctly.  Thanks to
1144           Phung Chi Kien for submitting a test program.
1146 Changes in 2.06:
1147         * ALL: Fix problem that would occationally cause a
1148           boot failure, depending on the length of the kernel.
1149         * ISOLINUX: Fix problem that would occationally cause a
1150           boot failure, depending on the length of directories.
1151         * SYSLINUX: Win32 installer now flushes buffers.
1152         * ppmtolss16: Be fully compliant with the PNM spec;
1153           actually process comments in the header and odd
1154           alignments of the various parameters, as well as
1155           "plain" (not raw) files and PBM and PGM files.
1156         * PXELINUX: Lower the default MTU to 1472 in order to deal
1157           with systems with slightly nonstandard MTUs, and PXE
1158           stacks which don't defragment correctly.  Unfortunately this
1159           is very hard to test dynamically.
1161 Changes in 2.05:
1162         * PXELINUX: Add a default query based on the hardware address
1163           of the boot device.  This is in lower case hexadecimal form
1164           separated by dashes and including the hardware type, for
1165           example, the Ethernet (type 1) address 88:99:AA:BB:CC:DD
1166           would query the file pxelinux.cfg/01-88-99-aa-bb-cc-dd.
1167         * PXELINUX: Fix bug involving non-IP-based config file names.
1168         * SYSLINUX: New installer for WinNT-based systems, from Lars
1169           Munch.
1170         * MEMDISK: Fix handling of memory region overlap when
1171           decompressing.  Thanks to Mikhail Kupchik for identifying
1172           the problem.
1174 Changes in 2.04:
1175         * ALL: Reclaim even more low memory by observing that
1176           comboot_seg == real_mode_seg is perfectly fine, and by the
1177           fact that the 1000h segment managed to get unused in all
1178           derivatives...
1179         * PXELINUX: Attempt to negotiate full Ethernet-sized blocks
1180           (1468 bytes) using the blksize option.
1181         * SYSLINUX: Resurrect the old no-mtools version of the
1182           installer, although as a root-only tool.  Some distributors
1183           have indicated that they need a small standalone installer.
1184         * MEMDISK: Fix a memory offset computation error when
1185           installing compressed disks which generally would cause
1186           1 MB of memory to be wasted.
1187         * MEMDISK: Fix installing the E820 memory map.  Calling
1188           INT 15h AX=0E820h with MEMDISK 2.03 loaded would give a
1189           completely corrupt memory map.
1190         * SYSLINUX: Make libsyslinux a dynamic library, so that it can
1191           be updated separately from client programs.  The whole idea,
1192           after all, is to enable alternate programs to become
1193           syslinux installers.
1194         * Include an rpm spec file in the distribution, so rpmbuild
1195           -ta works.
1197 Changes in 2.03:
1198         * Actually support comment lines in the configuration file.
1199         * PXELINUX: Try to resolve some problems with stack switches.
1200         * PXELINUX: Handle PXE stacks with broken routing.
1201           With these workarounds, the remote install PXE boot floppy
1202           (rbfg.exe) from Argon Technologies should work correctly.
1203         * Fix problems with Perl scripts in UTF-8 locales.
1204         * You probably need NASM 0.98.34 or later to compile this
1205           version.  0.98.36 is recommended.
1206         * MEMDISK: Now supports gzip compressed images.
1208 Changes in 2.02:
1209         * SYSLINUX: Security flaws have been found in the SYSLINUX
1210           installer when running setuid root.  Rewrite the SYSLINUX
1211           installer so it uses mtools instead.  It therefore now
1212           requires mtools (specifically mcopy and mattrib) to exist on
1213           your system, but it will not require root privileges and
1214           SHOULD NOT be setuid.
1216 Changes in 2.01:
1217         * MEMDISK: Fix memory sizing bug when the ramdisk crosses the
1218           16 MB boundary.
1219         * MEMDISK: Add a "pause" option to stop immediately before
1220           booting, to read off the messages.
1221         * MEMDISK: Support disk images with DOSEMU headers.
1222         * Update the mkdiskimage script to handle newer mtools
1223           versions, and be able to generate disk images with DOSEMU
1224           headers (controlled by the -d option).
1225         * Fix the COM32 sample program.
1226         * PXELINUX, ISOLINUX: Fix some COMBOOT API calls.
1227         * PXELINUX: Doc fix.
1228         * Build SYSLINUX into a small library for encapsulation into
1229           other programs (however, please keep in mind this is a GPL'd
1230           library.)
1231         * SYSLINUX: Make installer work with "owner" in /etc/fstab.
1232         * SYSLINUX: Fix issue with working on nonpartitioned hard disk
1233           devices.  THIS CONFIGURATION IS NOT RECOMMENDED.
1235 Changes in 2.00:
1236         * ALL: Add support for "COM32" (32-bit COMBOOT) images.
1237         * ALL: Add an API for COMBOOT/COM32 images.  See comboot.doc
1238           for details.  There is a C development environment for
1239           COM32 being created; it should be ready at some point in
1240           the future.
1241         * Fix mbr.asm so that it actually works.
1242         * SYSLINUX: The syslinux installer *SHOULD* now be safe to
1243           run setuid root.
1244         * PXELINUX: Fix bug where PXELINUX would override random
1245           chunks of the UNDI code segment!  Thanks to Kevin Tran for
1246           finding this bug.
1247         * ISOLINUX: Fix a bug related to slashes in pathnames.
1248         * ISOLINUX: Fix a bug in handling initrds over 128 MB.
1249         * ALL: Make the <Ctrl-V> key print out the version; this is
1250           to help debugging.
1251         * Add a small script, mkdiskimage, to create a DOS-formatted
1252           hard disk image using mtools.  This may be useful in
1253           conjunction with MEMDISK.
1254         * ISOLINUX: Search for a /boot/isolinux directory as well as
1255           /isolinux.
1256         * ALL: Fix a bug related to very long configuration files.
1257         * PXELINUX: Work around a NASM bug which would result in no
1258           delay before reset if an error occurs.
1260 Changes in 1.76:
1261         * ISOLINUX: Remove code no longer used which caused hangs on
1262           some Toshiba laptops.
1264 Changes in 1.75:
1265         * ALL: NASM 0.98.32 or later is now required to build
1266           SYSLINUX from sources.
1267         * SYSLINUX: put back in the workaround for the BIOS floppy
1268           table.  This seems to be a requirement for "extended" floppy
1269           formats to work correctly.
1270         * SYSLINUX: No longer warn if one is trying to boot on a 286
1271           or older.  The above BIOS workaround no longer fits if the
1272           requirement to use only 8086-compatible code in the early
1273           boot is maintained.  It made sense in 1994, but in 2002 a
1274           286 or older is a museum object.
1275         * SYSLINUX: Use a downright bizarre, stateful algorithm to try
1276           to guess the maximum transfer size.  I am *hoping* this will
1277           cut down on the number of systems for which -s is required
1278           to work at any acceptable speed.
1279         * ISOLINUX: Add a few more workarounds for various broken El
1280           Torito BIOSes.
1281         * Make sure .depend files aren't accidentally packed...
1282         * ALL: Fix bugs in the extension-detect code; this caused
1283           files like COMBOOT images and CD boot sectors to be
1284           mis-identified as Linux kernels and rejected.
1285         * ALL: Fix the return from COMBOOT.
1286         * ALL: Do some of the early groundwork for supporting DOS
1287           system calls in COMBOOT.
1288         * Get rid of unnecessary "near" directives, making the code
1289           bigger.
1290         * PXELINUX: Put the PXE stack back in the init state before
1291           invoking a chain-loaded NBP.
1292         * PXELINUX: Actually found the combination of calls that
1293           allows some (most?) PXE 2+ stacks to be unloaded from memory
1294           properly.
1295         * PXELINUX: Add "keeppxe" command-line option to disable
1296           the standard unloading of the PXE stack.
1298 Changes in 1.74:
1299         * SYSLINUX: fix bug that would cause valid kernel images to be
1300           labelled "invalid".
1302 Changes in 1.73:
1303         * Work on removing gratuitous differences between modules.
1304         * Break up the source in common and module-specific files.
1305         * PXELINUX: Allow chaining of other PXE NBPs.
1306         * ISOLINUX: Allow loading "CD-ROM boot sectors".
1307         * ALL: generalize the definition of a boot sector/NBP.
1309 Changes in 1.72:
1310         * PXELINUX, ISOLINUX: Fix bugs in the new core code.
1312 Changes in 1.71:
1313         * Fix a "brown paper bag" class bug in the new core code.
1315 Changes in 1.70:
1316         * Major code restructuring.
1317         * Relax the conventional memory limits somewhat.
1318         * MEMDISK: Set up the "version number string" pointer in the
1319           header correctly.
1320         * SYSLINUX: Fix, again, "the bug that won't die": the use of
1321           the offset parameter with the SYSLINUX installer.
1322         * SYSLINUX: Fix possible superblock corruption problem in the
1323           SYSLINUX installer.
1325 Changes in 1.67:
1326         * Handle bug in the location of initrd.
1328 Changes in 1.66:
1329         * MEMDISK: Make compile with newer versions of gcc.
1331 Changes in 1.65:
1332         * ISOLINUX: Support booting disk image files (to boot DOS or
1333           other non-Linux operating systems), *IF* the BIOS works
1334           correctly; unfortunately many BIOSes apparently don't.
1335         * Support Linux boot protocol version 2.03 (explicitly
1336           specify the initrd address limit.)
1337         * Handle small "pseudo-kernels"; images that use the Linux
1338           kernel boot protocols but are less than 64K in size.
1339         * MEMDISK: New subsystem; this is a driver which allows
1340           legacy OSes to boot using an in-memory simulated disk.
1341           See memdisk/memdisk.doc for more info.
1342         * PXELINUX, ISOLINUX: Correctly handle files larger than 65535
1343           blocks (32 MB for PXELINUX, 128 MB for ISOLINUX.)
1344         * PXELINUX: Make a best-effort attempt at freeing all memory
1345           claimed.  From the looks of it, it will fail on most PXE
1346           stacks.
1348 Changes in 1.64:
1349         * Limited support for hardware flow control when using a
1350           serial port console.
1351         * Support specifying the serial port I/O address explicitly.
1352         * Make DOS installer hopefully behave more nicely when used on
1353           recent Windows versions.
1354         * Fix returning to text mode when a font has been specified.
1355         * Attempt to detect missing serial port hardware and disable
1356           the serial port if there is nothing there.
1358 Changes in 1.63:
1359         * Make the ppmtolss16 program handle color conversion more
1360           correctly.
1361         * Clean up "make install" target, honour INSTALLROOT if it
1362           exists.
1363         * SYSLINUX: Fix stack-smash bug identified by Steffen
1364           Winterfeldt.
1365         * Hopefully fix return-to-text-mode on some graphics cards.
1366         * ISOLINUX: Bug workaround for Award BIOS 4.51, and perhaps
1367           other buggy BIOSes as well.
1369 Changes in 1.62:
1370         * PXELINUX: Allow the DHCP server to override the
1371           configuration file name and pathname prefix, using
1372           "site-specific" DHCP options.
1373         * PXELINUX: Documentation fixes.
1374         * PXELINUX: Fix the "ipappend" option; the last two values
1375           were reversed vs. what the kernel expected.
1376         * Introduce a way to return to text mode once we are already
1377           in graphics mode.  This may be useful for F-key help
1378           screens.
1379         * Fix several bugs in the way return to text mode was handled.
1381 Changes in 1.61:
1382         * ISOLINUX: Support full pathname searches.  Max length for a
1383           pathname is 255 characters.  As a result, only 64 "label"
1384           statements are supported in ISOLINUX.
1385         * PXELINUX: Max filename length extended to 63 characters.
1387 Changes in 1.60:
1388         * Add support for graphical splash screens.
1389         * Add mode control characters, which allows you to control
1390           message display output depending on output mode (text,
1391           graphics, or serial port.)
1392         * ISOLINUX: New program, which boots Linux from a CD-ROM
1393           without using floppy emulation mode.  See isolinux.doc for
1394           more details.
1395         * PXELINUX: Don't search for boot sector file types, since
1396           they don't work anyway.
1397         * SYSLINUX: Document the LOCK command for Win9x, and the error
1398           dialog box for WinNT/2K.
1400 Changes in 1.54:
1401         * PXELINUX: Fix code for finding !PXE from PXENV+.  This was
1402           due to a spec bug; match the most recent spec since that
1403           seems to be what implementations actually do.
1404         * SYSLINUX: Add some smarts to the boot sector, which
1405           hopefully should reduce the number of systems which require
1406           stupid mode ("syslinux -s").
1407         * PXELINUX: Document further some of the pathologies with old
1408           PXE stacks.
1409         * When specifying a "default" command line, no longer
1410           automatically appent "auto".  See the "DEFAULT" command in
1411           syslinux.doc for more information.
1412         * PXELINUX: Clean up the allocation of local socket numbers.
1414 Changes in 1.53:
1415         * PXELINUX: Rename pxelinux.bin to pxelinux.0, to match what
1416           most PXE servers seem to expect.
1417         * PXELINUX: Update the DHCP/boot server setup documentation.
1418         * PXELINUX: Support new "localboot" option for "label"
1419           sections.
1420         * PXELINUX: More robust parsing of DHCP/boot server packets.
1421         * PXELINUX: Include a small utility program "gethostip" to
1422           compute hexadecimal IP addresses.
1424 Changes in 1.52:
1425         * PXELINUX: Fix bugs introduced by new A20 code.  (SYSLINUX
1426           has also been changed for code consistency reasons, but I'm
1427           pretty sure the changes are don't care on SYSLINUX.)
1428         * Documentation updates.
1429         * PXELINUX: Add "ipappend" option to generate an ip= option to
1430           the kernel.
1432 Changes in 1.51:
1433         * PXELINUX: Not all PXE stacks fill in the IP address for a
1434           type 3 cached info query.  Use a type 2 cached info query
1435           for this information (only.)
1436         * Yet another attempt at A20 coding.  Now support BIOS call
1437           15:2401 as well, and handle machines which always have A20
1438           on separately.
1439         * Support memory detection using INT 15h, AX=0E820h.  BIOS
1440           manufacturers have apparently gotten sloppy about keeping
1441           INT 15h, AX=0E801h working properly.
1442         * Don't issue <CR><LF> onto the serial port when we're doing
1443           screen wraparound.
1445 Changes in 1.50:
1446         * Yet another A20-code update.  It seems some "legacy-free"
1447           machines and embedded gear simply don't have a KBC to talk
1448           to, and that waiting for one will wait forever.  Sigh.
1450 Changes in 1.49:
1451         * SYSLINUX: Implement a hack for BIOS drivers which hog significant
1452           chunks of low memory during boot.  (Note: PXELINUX already
1453           had this modification.  SYSLINUX does still require that the
1454           low 512K is available; PXELINUX requires 384K.  Machines
1455           with a physical memory hole in the low 640K cannot boot
1456           Linux no matter what.)  Depending what the reason is for the
1457           memory hole, a new kernel (2.4.0-test3-pre3 or later) may be
1458           required.
1459         * SYSLINUX: Default installer binary now compiled against
1460           glibc 2.1.  If this is inappropriate for your system and you
1461           still want to use the offical version of SYSLINUX, please
1462           follow the instructions in "distrib.doc" to rebuild the
1463           installer.
1464         * SYSLINUX: Linux installer program now supports -o <offset>
1465           option which does a loopback mount with the
1466           -o loop,offset=<> option.  Useful to run SYSLINUX on an
1467           individual partition of a whole-harddisk image.
1468         * Include the source code to a Master Boot Record (MBR)
1469           functionally equivalent to the one installed DOS except it
1470           includes EBIOS support, and should be resistant to geometry
1471           changes.  The MBR code is public domain.
1472         * PXELINUX: Fix "double p" bug: if the tftp prefix was null,
1473           all filenames would get a "p" preprended, e.g.
1474           "ppxelinux.cfg" and "pvmlinux".
1476 Changes in 1.48:
1477         * PXELINUX: Workaround for PXE ROMs based on the Intel PXE PDK
1478           3.0 build 071 and earlier: missing !PXE structure pointer.
1479         * PXELINUX: Handle larger BOOTP/DHCP packages.
1480         * PXELINUX: The command line passing was broken; fix.
1481         * PXELINUX: Make COMBOOT images work.
1482         * PXELINUX: Documentation on how to make booting work using
1483           the PDK 3.0-derived clients, which aren't so generous as to
1484           allow booting with only "PXEClient" specified.
1486 Changes in 1.47:
1487         * PXELINUX: RFC 1123 states that a TFTP implementation MUST
1488           use adaptive timeout, "at least an exponential backoff of
1489           retransmission timeout is necessary."  Implement a very
1490           simple exponential backoff for retransmits.
1491         * PXELINUX: Updated documentation, including pointer to new
1492           TFTP server.
1493         * PXELINUX: When sending ERROR due to bad OACK, use the proper
1494           destination port number (why are TFTP port numbers so odd?)
1495         * PXELINUX: If the boot dies in the middle somewhere,
1496           eventually give up and reset the machine (unattended
1497           operation.)
1499 Changes in 1.46:
1500         * New program PXELINUX to do network booting using a
1501           PXE-compliant (Pre-Execution Environment) network booting
1502           PROM.  See pxelinux.doc for details.
1504 Changes in 1.45:
1505         * Serial console support.  See syslinux.doc for details.
1507 Changes in 1.44:
1508         * Change HIGHMEM_MAX to 38000000h to (hopefully) avoid the
1509           kernel stepping on it; 3f000000h was apparently a higher
1510           limit than the kernel used!
1512 Changes in 1.43:
1513         * Add sys2ansi.pl script to display the contents of a
1514           colorized SYSLINUX file.
1515         * Changed the io_delay once again, after a report that the
1516           old delay port causes hangs on some systems.
1518 Changes in 1.42:
1519         * Frob the "fast A20 gate" port as well as the keyboard
1520           controller; will this help systems with problems?
1521         * Be even more paranoid about A20, unfortunately even this
1522           seems to be not paranoid enough... what I don't understand
1523           is that if there is hardware out there *this broken*, how
1524           can it run Linux at all?  Report an error message rather
1525           than hang forever if A20 is stuck.
1526         * Include some intermediate files in the distribution, plus
1527           provide a "make installer" target for distributors to relink
1528           the install programs only.  I would prefer the syslinux boot
1529           loader proper to be "binary clean" for debuggablity -- use
1530           "make clean ; make installer" to rebuild the installers only.
1532 Changes in 1.41:
1533         * Don't get confused by directories, volume labels, or VFAT
1534           long names.
1535         * Use INT 15h, AX=0E801h to query memory size before trying
1536           INT 15h, AH=88h.  This not only provides more headroom
1537           between the kernel and the initrd on large-memory machines,
1538           but it appears some recent BIOSes actually have started
1539           returning garbage for the AH=88h (older) call.
1540         * Trust high memory beyond the 15 MB mark if the user has
1541           specified it, or if obtained with INT 15h, AH=0E801h (with
1542           no memory holes above 1 MB.)
1544 Changes in 1.40:
1545         * Increase A20M delay and put in a test to avoid problems on
1546           certain IBM Thinkpads (thanks to Donnie Barnes of RedHat
1547           for vital info on this one.)
1548         * Support COMBOOT style boot command images.
1549         * Support chain loading (foreign operating systems, e.g. DOS).
1550         * Include a new "copybs" DOS utility to copy a boot sector to
1551           a file (under Linux, use "dd".)
1552         * Fix the DOS installer to work for disks over 32 MB.
1553         * SYSLINUX should now handle disks with more than 65536 tracks.
1555 Changes in 1.37:
1556         * Fix a bug that caused "label" statements in syslinux.cfg to
1557           not be handled properly.
1558         * Updated the documentation.  Among other things, we now allow
1559           up to 128 "label" statements.
1561 Changes in 1.36:
1562         * Fix for booting old (pre-initrd) kernels.
1563         * It seems at least some versions of OS/2 doesn't set up all
1564           the fields in the superblock correctly.  Account for that.
1565         * Fix bug that caused boot failure when using the mem= option.
1567 Changes in 1.35:
1568         * Loading from partitions now should work properly.  (Actually
1569           tested, this time.  You should even be able to dd a floppy
1570           to a partition and boot from it.)
1571         * Removed large workaround code for an alleged ancient BIOS
1572           bug I have never actually seen.  The -s option should work
1573           on those machines, anyway.
1574         * Support for simple keyboard remappings, same as used by
1575           LILO (once again to support localization.)  The program
1576           keytab-lilo.pl from the LILO distribution included to
1577           generate such maps.
1578         * Added a "safe, slow and stupid" (-s) option to the
1579           installers.  This option will lobotomize the boot sector to
1580           hopefully work on even very buggy BIOSes.
1582 Changes in 1.34:
1583         * Ability to load a VGA font on bootup (for localized Linux
1584           distributions.)
1586 Changes in 1.33:
1587         * Bug fix in the Linux installer.
1588         * Added a workaround for a bug in certain AMI/Intel BIOSes
1589           when booting from CD-ROM.
1590         * Documentation changes.
1592 Changes in 1.32:
1593         * FAT16 filesystems are now supported.
1595 Changes in 1.31:
1596         * Now compiles under Linux, using NASM, rather than using
1597           Turbo Assembler under DOS.  See http://www.cryogen.com/Nasm
1598           for information about NASM.
1599         * Linux-hosted SYSLINUX installer, as well as a
1600           rewritten DOS installer (now is written in assembler, so we
1601           don't need Turbo C.)
1603 Changes in 1.30:
1604         * Added support for loading bzImage and initrd loading, and made
1605           SYSLINUX new-setup-code aware (SYSLINUX 1.30 id=0x31).
1606         * Added LILO-style kernel labels; see the LABEL and IMPLICIT
1607           keywords in README file.
1608         * Added support for colorization of intro and help screens.
1609         * The vga= option is now handled correctly.
1610         * Massive rewrite of large chunks of the code in order to
1611           support the first two new features.
1613 Changes in 1.20:
1614         * Added simple online help at the "boot:" prompt.
1615         * Removed 2880K image as I no longer have access to such a
1616           floppy drive.  (Donations accepted!!)
1617         * Decided to distribute the source in a subdirectory rather
1618           than in a nested zipfile.
1620 Changes in 1.11:
1621         * Removed a sanity check which would cause booting to fail on
1622           Phoenix BIOS version 4.03.  Apparently this BIOS is buggy.
1624 Changes in 1.10:
1625         * Added configuration file SYSLINUX.CFG.  This file contains all
1626           configurable options, and can be edited from any OS which can
1627           access an MS-DOS filesystem; there is no longer a need to run
1628           SYSLINUX.EXE except to write the boot sector.
1629         * Default command line now given by "default" line in config
1630           file.
1631         * LINUXMSG.TXT and BOOTMSG.TXT hard-coded file names replaced by
1632           "display" and "prompt" lines in config file.
1633         * LILO-style option appending now supported ("append" line in
1634           config file).
1635         * Prompt timeout is now supported ("timeout" line in config
1636           file).  The timeout is cancelled when anything is typed on the
1637           command line.
1638         * Pressing <ESC> or <Ctrl-C> at the Loading... stage now aborts
1639           the kernel loading in progress and returns the user to the
1640           boot: prompt.
1641         * The installer now automatically sets the READONLY flag on
1642           LDLINUX.SYS.
1643         * Added 2880K disk image.
1645 Changes in 1.03:
1646         * Fixed bug that would prevent booting from double-density
1647           floppies and other DOS filesystems with multiple sectors per
1648           cluster.
1649         * Added 720K disk image.
1650         * Changed default kernel name on disk images to LINUX.
1652 Changes in 1.02:
1653         * Fixed bug that would garble the command line on recent kernels
1654           with more than 4 sectors of setup code (this wasn't really a
1655           *bug*; rather, a kernel change broke the code.  Unfortunately
1656           the Linux boot interface is still sorely undocumented).
1657         * Added BOOTMSG.TXT file support (message file which does not
1658           force display of the boot prompt).
1660 Changes in 1.01:
1661         * Fixed bug on some (most?) 386 BIOSes would require two boot
1662           attempts.