-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
1745 lines (1629 loc) · 76.2 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Starting with 1.47, changes marked with SYSLINUX, PXELINUX, ISOLINUX
or EXTLINUX apply to that specific program only; other changes apply
to all derivatives.
Changes in 6.03:
* chain: Fix chainloading on 6.02 (Raphael S. Carvalho).
* core: Do not leak the __lowmem and __bss16 macros to modules;
hide them so modules will not use them.
* load_linux: Do not use size heuristic for non-relocatable
kernels, for zImage kernels and for non-Linux kernels.
* PXELINUX: Fix the SENDCOOKIES feature for HTTP
(Russel Santillanes).
* gnu-efi: Add gnu-efi as a submodule.
* ANSI: Support color tables with more than 256 entries
(James Buren).
* EFI: Fix displayed version; add DATE (Gene Cumm)
* PXELINUX, EFI: Fix bad read of file size over TFTP on EFI64
(Sylvain Gault).
* Fix hand over to kernel:
"Booting kernel failed: Invalid argument" error.
* ISOLINUX: EDX, LBA values higher than 65535; work around for
buggy BIOS, where the system would hang, would reboot, or
would show a "Disk error 01, AX=42" message.
* core/legacynet: Enable dot quad resolution (Gene Cumm).
* diag/geodsp improvements (Gene Cumm).
* DOS: Fix syslinux.com DOS-based installer.
* Improve gcc 4.3.0 compatibility.
* syslxint: fix compilation on non-x86 architectures.
* localboot: Fix "localboot 0x80" and similar cases.
* Add memset() calls prior to any intcall() and other mem fixes;
specially relevant for older hardware and/or buggy BIOS.
* poweroff.c32: Fixes (Gene Cumm).
* HDT: Fix memory leak in CLI (Felipe Pena).
* ACPI: Remove memset of buffer; it makes things clearer but
also prevents some compilation warnings (Erwan Velu).
* Add manpages for isohybrid, memdiskfind
(Peter Jones, Gene Cumm).
* ISOLINUX: Experimental Rock Ridge support (Thomas Schmitt).
* comapi: Remove the comapi interfaces.
* EFI: Fixes on PE files and OVMF compatibility
(Sylvain Gault, Gene Cumm).
* EFI: Updates and fixes for gnu-efi sub-module
(Sylvain Gault, Gene Cumm).
* BIOS: Fix low memory check.
* Filesystem UUID to SYSAPPEND bit 0x40000 for FAT and ext2
(Serj Kalichev).
* Makefiles: Export the firmware type as a cpp variable.
Additional improvements. Fix "make spotless".
* core, BIOS: Move __syslinux_shuffler_size to assembly.
Actually get the shuffler size sanely. Fix booting recent
Syslinux versions on certain hardware and on certain
virtualization software (e.g. QEMU 0.11.1, VirtualBox 4.1.x).
* lua: Upgrade to v.5.2.3 (Ferenc Wágner) and additional fixes.
* chainload: Fixes to chain.c32 and pxechn.c32.
* NTFS: Make byte_shift a constant.
* NTFS: Correct parsing of file runs (Andy Alex).
* core, BIOS: Correct detection of EDD (Andy Alex).
* core: Avoid initializing the cache more than once
(Raphael S. Carvalho).
* NTFS: Handle fragmented $MFT file (Andy Alex).
* BIOS: Use int 0x16, ah=0x02 to probe for shift flags. Attempt
workaround for USB keyboards not responding at boot time.
* kbd: Getting the keyboard shift state is now a firmware method.
* kbd: Fix force-prompt features.
* BTRFS: Fix booting on BTRFS.
* cache, btrfs: Provide a general cached read routine.
* NTFS: Correct file->offset usage in ntfs_readdir (Andy Alex).
* New support for UFS/FFS (UFS1/2) (Raphael S. Carvalho).
* adv: Remove double definition;
it should fix uses of the ADV, including "--once".
* memdump: Remove old obsolete COM16 binary.
* isohybrid: Numerous fixes (Thomas Schmitt).
* chain.c32: Add an adjustable "strict={0,1,2}" flag, improve
error reporting (Michal Soltys.)
* lpxelinux.0: Workaround for various buggy BIOSes (Gene
Cumm.)
* PXE: Fix a stack-smashing bug which broke a large number of
systems.
Changes in 6.02:
* efi64: Add support for booting 32-bit kernels.
* efi: Use the EFI handover protocol when booting kernels if
available.
* Fix various make targets that became broken when switching to
per-firmware object directories, including 'make install' and
'make netinstall'.
* efi: Improve handling of packet loss in UDP stack.
* tests: Introduce a new regression test framework designed to
ensure bugs are not reintroduced once fixed.
* efi: Implement localboot support.
Changes in 6.01:
* efi: Mark some symbols as __export otherwise libcom32.c32 and
vesamenu.c32 will refuse to load.
* bios: Wire up the bios kernel loader. It was impossible to
load a kernel from bios in 6.00.
* efi: Fix 'make installer'. There are no EFI installers so
don't try and build them as we run into build errors.
* efi: Reuse the initial TFTP client port in subsequent
transfers otherwise the server will send an error packet.
* efi: Some firmware will not set a default TTL value in IP
packets - we must explicitly set it ourselves otherwise a
value of zero may be used.
* bios, font: Fix a font regression affecting some VirtualBox
users.
Changes in 6.00:
* Add support for booting from EFI.
* EFI TCP/IP support. This allows the EFI backend to hook into
the generic TFTP, HTTP and FTP functionality.
Changes in 5.11:
* Dynamic debug support: Add new module, debug.c32, that allows
debug code to be dynamically enabled and disabled at runtime.
Changes in 5.10:
* PXELINUX: An entirely new network implementation based on
the lwIP embedded TCP/IP stack. As a result, plain PXELINUX
can now support HTTP and FTP without gPXE/iPXE. ls/readdir
functionality is supported over HTTP with an indexing
webserver, or over FTP with most common FTP servers. For the
new network stack use lpxelinux.0. For the legacy stack use
pxelinux.0.
* Rename the "ipappend" option to "sysappend" ("ipappend" is
still accepted as an alias) and make it available for all
derivatives. Add additional strings derived from the system
DMI/SMBIOS information if available.
* "sysappend" strings are also sent as http cookies, with the
prefix _Syslinux_ added, on all http transfers. This can be
overridden with the SENDCOOKIES configuration file command.
* poweroff.c32: A new module to power off a system via APM. It
replaces the poweroff COMBOOT module (Sebastian Herbszt).
* PXELINUX: Fix booting with DHCP options 209 and 210 which was
broken in 5.00.
* Handle loading kernel images with no protected mode code. A
legitimate kernel image can consist solely of real-mode code.
The support for booting such images was broken in 5.00 (Josh Triplett).
* Fix a regression in the .psf font file loader introduced
in 5.00.
Changes in 5.01:
* txt/: A new AsciiDoc documentation set (work-in-progress)
(Gene Cumm).
* core: Fix a bug in the realloc() implementation that caused
machines to appear to run out of free memory.
* ldlinux: Fix multiple buffer overflows in cmdline parsing
code that resulted in files failing to run and cmdlines
being truncated.
* core: Fix debug build by tagging __bad_SEG() with __export.
* com32: Restrict library filenames to 8.3 format.
* EXTLINUX: Fix installation and subdirectory patching.
* ISOLINUX: Fix booting isohybrid images that are over 32K.
* com32: Strip modules to reduce their size.
* XFS: Implement directory block cache and fix
shortform-directory lookup (Paulo Alcantara).
Changes in 5.00:
* com32: Switched from the COM32 object format to ELF as it is
a much more powerful format that allows undefined symbols to
be resolved at runtime and dynamic loading of module
dependencies, which means modules now become shared object
files instead of statically linked binaries - reducing both
disk space and runtime memory consumption.
* core: Split non-core functionality into ldlinux.c32, which
is an ELF module loaded by the core that contains everything
the core doesn't require to boot the system, e.g. config
parser, command-line interface, etc.
* Replaced __intcall() calls with direct function calls now
that we can resolve undefined symbols at runtime, thanks to
the ELF object support. Now that we no longer need to go
through the 16-bit interrupt mechanism we can make full use
of the 32-bit execution environment. This change required
reimplementing lots of the 16-bit assembly code from core/
in C.
* com32: __com32.cs_bounce is gone now we always run in a
32-bit environment once we execute ldlinux.c32.
* ldlinux: A new "PATH" directive was added to the ldlinux.c32
config parser that specifies a colon-separated list of
directories to search when attempting to load modules.
* ALL: Delete all references to/code for 16-bit COMBOOT files.
COMBOOT files (.cbt and .com) are no longer supported under
Syslinux.
Changes in 4.07:
* EXTLINUX: fix crash caused by dereferencing garbage pointer.
* Plug memory leak in searchdir which eventually leads to an
observable hang (Shao Miller).
* ISOLINUX: fix bug triggered by isohybrid images larger than
32K which results in an invalid image checksum error.
* menugen: make it Py3k compatible (Paulo Alcantara).
Changes in 4.06:
* Support for NTFS, by Paulo Alcantara.
* EXTLINUX: more robust device detection, allow user to override.
* kontron_wdt.c32: Add a new module to enable the hardware
watchdog of some Kontron boards. It allows enabling the watchdog
and then booting a given image.
* HDT updated, and now can display images regarding some detection
steps. Add postexec command to run a particular entry after
HDT's execution, add silent option and various fixes.
* ifcpu.c32: Detect hypervisor presence.
* lua.c32: Add dhcp support and support for native Syslinux
functions syslinux_config(), syslinux_ipappend_strings() and
syslinux_reboot().
* isohybrid: Workaround for various EFI systems.
* pxechn.c32, a PXE NBP chainloader. More versatile alternative
to pxechain.com and resolves the PXELINUX -> WDS issue with
Microsoft Windows Server 2008R2 (Gene Cumm).
* btrfs: Fix booting off of a subvolume.
* com32: Add device tree support.
* SYSLINUX: Fix relative paths for VFAT. The CONFIG and APPEND
directives now support entirely relative paths.
Changes in 4.05:
* HDT updated, and now supports uploading data to a TFTP
server.
* ISOLINUX: remove the .img file support; it has been broken
on virtually all systems since the beginning, and has been
totally broken since 4.00 at least. Use MEMDISK instead.
* chain.c32: Support chaining ReactOS' FreeLdr (Shao Miller)
* isohybrid: -m option to add support for Mac EFI booting.
* ifmemdsk.c32: Choose boot option based on presence of
MEMDISK.
* Remove bogus distributed mk-lba-img binary.
* The Syslinux project has a new, cool logo by Abi
"ixxvil" Rasheed (doc/logo/*).
Changes in 4.04:
* PXELINUX: Fix handling of unqualified DNS names.
* PXELINUX: Fix timer bug when PXELINUX might be unloaded
(Gene Cumm).
* core/writedec.inc: Fix duplicate declaration and overflow
(Gene Cumm).
* GCC 4.5 fixes.
* sample directory: Fix Makefile include (Gene Cumm).
* ver.com: New universal DOS/COMBOOT application to display
version information (includes DRMK) (Gene Cumm).
* rosh.c32: updated; Using getopt() for internal commands to aid
parsing options; Fix bugs in ls; add warm reboot and echo
(Gene Cumm).
* com32: fix a file descriptor leak.
* gfxboot.c32: handle TEXT..ENDTEXT; error out on no LABELs
found (Sebastian Herbszt).
* Fix booting on non-partitioned devices.
* MBR, isohybrid: Workaround for a BIOS issue on Acer
Travelmate and possibly other machines.
* COM32: Adding ACPI parsing libary
* HDT: Release 0.4.1 to support ACPI parsing,
improved mutli-core/cpu reporting
* LUA: Updating to 5.1.4-2
* SYSLINUX: core/diskstart.inc: Reset DS after checksum in case
it isn't 0 (Gene Cumm).
* win64: Script update for additional mingw compiler names
(Gene Cumm).
* diag: New directory for diagnostic-related tools. Add a
handoff MBR/VBR and geometry display images (Gene Cumm).
* MEMDISK: use "mem=" parameter to mark available memory above
this point as reserved (core already does alignment) (Gene Cumm).
* MEMDISK: Additional disk probe checks and debug output
(Shao Miller, Gene Cumm).
* gpxe: add gpxelinuxk.0, based off of undionly.kpxe + new
script (Gene Cumm).
* isohybrid: install the isohdpfx*.bin/isohdppx*.bin files to
make isohybrid images in one step with GNU xorriso.
* PXELINUX: disable a hack that would make localboot work on
some machines, but break just about as many. Some machines
which worked with "localboot 0" in previous versions may
need "localboot -1" in this one. If you have a machine
which requires "localboot -1", a copy of the dmidecode
or sysdump output would be appreciated.
* Include a set of diagnostics by Gene Cumm.
* Fixes for gcc 4.6 and binutils 2.21.51.
* chain.c32: Allow "uuid" as a synonym to "guid".
* Handle directory names starting with .. for vfat and
iso9660.
* New MENU HIDDENKEY command to provide a one-keystroke way to
activate a boot option from a hidden menu intro screen.
Changes in 4.03:
* Don't hang if no configuration file is found.
* Better support for booting from MBRs which don't pass
handover information.
* EXTLINUX: Try to be smarter about finding the partition
offset.
* chain.c32: support chainloading Dell Real Mode Kernel (Gene
Cumm).
* chain.c32: fix booting in CHS mode.
* rosh.c32 updated (Gene Cumm).
* Fix the -s option to the syslinux/extlinux installer (Arwin
Vosselman).
* isohybrid: fix padding of large images (PJ Pandit).
Changes in 4.02:
* SYSLINUX: correctly handle the case where the -d option is
specified with a non-absolute path, i.e. "syslinux -d
syslinux" instead of "syslinux -d /syslinux".
* ISOLINUX: recognize the directory names /boot/syslinux and
/syslinux, and the filename syslinux.cfg in addition to the
isolinux-specific names. Thus, "syslinux.cfg" is now a
generic name, whereas "isolinux.cfg" or "extlinux.conf" is
specific to different derivative.
* chain.c32: support setting alternate config filename for
stage2 of GRUB Legacy (Gert Hulselmans).
* whichsys.c32: execute specific command, based on Syslinux
bootloader variant (Gert Hulselmans).
* lua.c32: a lot of new bindings added to the "syslinux"
namespace: VESA, PCI, DMI, kernel loading (Marcel Ritter).
* btrfs: print a comprehensive error message if compressed or
encrypted files are encountered (neither is currently
supported.)
* SYSLINUX: mtools installer: honor TMPDIR, error out on disk
full.
* Handle fallbacks from EDD to CHS, to deal with systems which
announce EDD support but don't actually have it.
* SYSLINUX: the mtools, DOS and win32 installers now use the new
command line options.
* PXELINUX: fix the use of IP addresses in TFTP :: or tftp://
host syntax.
* SYSLINUX: experimental Win64 installer (syslinux64.exe).
Changes in 4.01:
* ISOLINUX: fix initialization on systems which don't zero
low memory.
* SYSLINUX/EXTLINUX: fix handing of disk read retries in
EDD mode.
* ISOLINUX: change the initialization sequence to avoid
problems with certain (old) BIOSes. Special thanks to
Helmut Hullen for invaluable debugging support.
* ifplop.c32: new module which detects if the PLoP Boot Loader
already has booted a CDROM or USB drive (Gert Hulselmans).
* Correct a severe memory overwrite bug, triggered primarily
when selecting a very long command line in the menu system.
* lua.c32: Lua script interpreter, currently experimental
(Alexey Zaytsev, Marcel Ritter, Geert Stappers).
* PXELINUX: new option IPAPPEND 4 to append the system UUID to
the kernel command line.
* PXELINUX: display BOOTIF and SYSUUID at startup time, and
when Ctrl-N is pressed on the command line.
Changes in 4.00:
* Major code base changes; all filesystem rewritten in C.
This work was done primarily by Liu Aleaxander (Yuanhan Liu).
* EXTLINUX: btrfs and ext4 support. btrfs support was done by
Alek Du of Intel.
* EXTLINUX is no longer a separate derivative; extlinux and
syslinux both install the same loader (ldlinux.sys); for the
Linux-based installers the extlinux binary is used for a
mounted filesystem; the syslinux binary for an unmounted
filesystem.
* When loading a new configuration file with the CONFIG
command, one can now also specify a new current directory
with an APPEND statement.
* Full ADV support for Syslinux, to boot-once and MENU SAVE
works.
* Full support of GPT-partitioned disks, including disks
and/or parititions larger than 2 TiB (if supported by BIOS.)
* The GPT handover protocol adjusted to the current T13
committee draft; see doc/gpt.txt.
* HDT: code cleanup, small bugfixes
* The "linux" syslinux installer (syslinux-nomtools) now has a
command-line syntax closer to the extlinux installer. The
mtools, dos and win32 installers will get this new syntax
eventually, but it is not implemented yet.
* chain.c32: support booting GPT partitions by index, GUID, label.
* chain.c32: support booting the Syslinux partition with "fs".
* chain.c32: implement gpt.txt hand-over protocol.
* chain.c32: support for chainloading Grub stage 2.
* PXELINUX: TFTP URL syntax (tftp://) supported even when not
running gPXE/gpxelinux.
* New ls.c32 module to display the contents of the disk from
the command line, and pwd.c32 to display the current
directory.
* rosh.c32 (read only shell) updated and hopefully usable.
* PXELINUX: Support "localboot -1", just like the other
derivatives.
* gfxboot.com removed in favor of gfxboot.c32.
* New MENU HELP statement to display fullscreen help text as a
result of a menu selection.
* memdiskfind utility that can be used with the phram driver
in the Linux kernel to mount a memdisk.
* ifcpu.c32: Adding usage when no parameters are given,
adding PAE support.
* ifcpu.c32, ifcpu64.c32: handle more than one argument per
target.
* isohybrid: C version which does not require Perl.
* New command MENU IMMEDIATE to permit hotkeys to activate
immediately without needing Enter.
* mdiskchk.com supports a --no-sequential (or -n) option to
suppress the classic all-drive-probing heuristic. Useful
on BIOSes who crash/hang when certain drive numbers are
probed.
* ElTorito.Sys DOS driver now scans drive numbers upwards
instead of downwards, in order to avoid a fairly common
bug on some BIOSes where probing drive 0xFF causes a
failure.
* NASM 2.03 or later required to build. 2.07 or later
recommended.
Changes in 3.86:
* chain.c32: fix chainloading the MBR of a hard disk (broken
in 3.85).
* mboot.c32: report the boot loader name in the information
structure.
* com32: set argv[0] in a com32 module.
* core: add a workaround for a bug in Xen HVM older than
version 3.3: disable halt on those platforms.
* Fix problems where certain operations in com32 modules would
cause the core to believe the system was idle.
* MEMDISK: fix MBR detection when used with a DOSEMU header or
an offset.
* MEMDISK: generate the mBFT checksum correctly.
Changes in 3.85:
* gPXELINUX: updated to gPXE 1.0.0. gPXELINUX can now do NBP
chainloading, and does not require a second DHCP.
* vesamenu.c32: unbreak the default "grey hole" background.
* We no longer have a built-in default of "linux auto".
Instead, if no DEFAULT or UI statement is found, or the
configuration file is missing entirely, we drop to the boot:
prompt with an error message (if NOESCAPE is set, we stop
with a "boot failed" message; this is also the case for
PXELINUX if the configuration file is not found.)
* chain.c32: support chainloading Grub4DOS; patch by Gert
Hulselmans.
* New tool: sysdump.c32, can be used to produce system
information for debugging via tftp or ymodem (serial port).
* "vga=current" on the Linux command line is now supported.
* chain.c32: support for Windows Recovery Console, via the
"cmldr=" option.
* chain.c32: should now support loading NTLDR from different
type media than loaded from.
* chain.c32: support chainloading to a FAT/NTFS partition with
invalid "hidden sectors" via the "sethidden" option.
* memdisk: fix the mBFT ACPI table.
* vesamenu.c32: if the image is smaller than the screen, tile
it across the whole screen.
* mkdiskimage: -s option for producing a sparse image.
* vesamenu.c32: support arbitrary resolution setting (beyond
BIOS support) on some Intel-based video chipsets. This code
is a modified version of the "915resolution" tool by
Steve Tomljenovic; your mileage might vary.
Changes in 3.84:
* SYSLINUX: make the DOS installer work for MS-DOS 7.x/8.x
(Win9x/ME) again.
* HDT: updated to version 0.3.6 (numerous changes.)
* mboot.c32: now supports video mode setting if requested by
the image.
* MEMDISK: Fix floppy images of PC-DOS.
* MEMDISK: Add support for emulation of CD-ROM images; patch
by Shao Miller.
* MEMDISK: Comply with the Win9x "safe hook" standard,
allowing a protected-mode driver.
* MEMDISK: New "mBFT" ACPI table, by analogy with the iSCSI
iBFT table. This allows detection from a protected-mode
operating system without EDD support.
* 32-bit version of the gfxboot loader (gfxboot.c32), so far
experimental. This will replace gfxboot.com in the future.
* vesamenu.c32: new MENU RESOLUTION directive to set a screen
resolution other than 640x480.
* chain.c32: add support for loading isolinux.bin.
* chain.c32: make sure to always return to text mode.
* eltorito.sys: DOS driver for generic CD-ROMs; by Gary Tong
and Bart Lagerweij.
Changes in 3.83:
* PXELINUX: clear memory before handing over to a chainloaded
NBP. This may help avoid a bug in Windows RIS.
* PXELINUX: fix localboot after NBP chainloading on certain
BIOSes (including ASUS A8N-E, but possibly others.)
* chain.c32: support chainloaded bootloaders on ISOLINUX.
* PXELINUX: allow filenames up to 251 characters.
* MEMDISK: fix problems booting from USB on Thinkpads, and
possibly other machines or hardware combinations.
* isohybrid: fix the -id option.
* HDT: updated to version 0.3.4.
* MEMDISK: the stack size is now configurable, with the stack=
option.
* Simple menu: fix Ctrl-W (word erase) in command-line edit.
* Simple menu: fix crash on some platforms.
* Gfxboot: fixes to the configuration file parsing.
* PXELINUX: add a tool to override specific DHCP options via
values hardcoded in the pxelinux.0 file. These hardcoded
values can be either "before DHCP" (defaults if DHCP do not
provide values), or "after DHCP" (overrides DHCP). The tool
pxelinux-options can be used to set these options. This
feature does not apply to gpxelinux.0; when used with gPXE
this is better handled by modifying the embedded script.
Changes in 3.82:
* isohybrid: fix the -partok logic for loading from a partition.
* ISOLINUX: deal with systems which return from INT 13h with
interrupts disabled.
* Do not invoke the idle handler during large file loads.
* Simple menu: make ONTIMEOUT work with MENU HIDDEN.
* PXELINUX: handle TFTP servers which have extra NULs at the
end of an OACK packet.
Changes in 3.81:
* Shuffler: fix bug in real-mode entry. This affected a
number of modules, probably in relatively unimportant ways,
but it completely broke linux.c32.
* Improved performance.
* Attempt to halt the processor while idle. This can cause
bad reponsiveness when using a serial console especially for
automated input; if that ends up being a problem, use the
new "NOHALT 1" configuration command.
* linux.c32 now suppresses all messages if the "quiet" flag is
specified.
* isohybrid: add a variety of options, and a help message.
* ISOLINUX: fix booting in hybrid mode when CBIOS is used.
This unfortunately means that the isohybrid handoff protocol
has changed, so the isohybrid utility must version-match
isolinux.bin.
* Drop support for ACPI 3 extended memory flags.
* Menu system: don't set the autocr flag on the serial
console.
* altmbr: fix handling of logical partitions.
* altmbr: cap at 439 bytes so the partition select byte isn't
part of the file.
Changes in 3.80:
* New shuffler mechanism and API.
* Rewritten mboot.c32 module.
* The syslinux_boot_linux() function has been simplified.
* Don't hang trying to boot a "menu quit" label from the CLI.
* Fix problem with boot-once "sticking" on some BIOSes.
* isohybrid: fix problem with images over 2 GB in size.
* APM poweroff module (poweroff.com) by Sebastian Herbszt.
* ISOLINUX: fix the handling of large directories. Bug found
and fixed by Steffen Winterfeldt.
Changes in 3.75:
* PXELINUX: fix the "keeppxe" option, which was broken in
3.74.
* MEMDISK: correct the extraction of geometry information from
the MBR of a hard disk image, again broken in 3.74.
* extlinux(1) man page from Brian Pellin.
* Simple menu: MENU SAVE is now controllable on a menu-by-menu
or entry-by-entry basis.
* gPXELINUX: fix interrupt-disabling bug.
* HDT: fix lockup on machines with certain PCI configurations.
Changes in 3.74:
* New UI directive, which allows a more natural way to specify
a menu system (or not.) With the UI directive specifying
the menu system, the DEFAULT directive can be used to select
the default entry inside the menus.
* kbdmap.c32: new module to load a new keyboard map
dynamically.
* isohybrid: workaround bug in some versions of binutils.
* Fix issue with the placement of the initrd on some machines.
* ifcpu64: fix handling of less than three arguments.
* Fix bug in the shuffle library when dealing with a very
large number of fragments.
* Documentation fixes by Vicente Jimenez Aguilar.
* gPXE updated to version 0.9.7.
* hdt.c32: Hardware Detection Tool, an interactive hardware
analyzer module by Erwan Velu.
* MEMDISK: enable automatic determination of the disk geometry
for a large floppy disk image if (and only if) it is
formatted with a FAT filesystem.
* SYSLINUX: fix the handling of .bss files on FAT12/16.
* Suppress the Loading ... message if "quiet" is specified on
the kernel command line.
* Fix the use of "CONSOLE 0" with menu.c32.
* Allow COM32 modules to be aware of all memory even in the
presence of a memory hole. The "linux.c32" module can be
used to load a kernel (or memdisk) plus large initrd on
such a system.
* MBR: produce alternate MBR variants which force the drive
number to hd0 (_f variants), or force the drive number to
hd0 if the Ctrl key is pressed (_c variants.) Furthermore,
add an MBR variant (altmbr*.bin) which ignores the active
flag and instead boots the partition number specified in the
byte at offset 439 decimal.
* Add IPAPPEND strings to com32 modules, especially needed for
linux.c32.
* New MENU SAVE directive which saves the latest menu
selection until the next boot. Currently only implemented for
EXTLINUX.
* gfxboot.com: *experimental* interface module to Steffen
Winterfeldt's "gfxboot" graphical front end
(http://gfxboot.sourceforge.net/). Module by Sebastian Herbszt.
Changes in 3.73:
* Upgrade gPXE to release version 0.9.5.
* Fix a number of build errors on various platforms.
* Handle systems with E820 "extended attributes" per ACPI 3.
Someone "cleverly" decided to change the E820 spec in a
backwards-incompatible manner!
* MEMDISK: default to "safeint".
* Adopt the moniker "The Syslinux Project", standard proper
noun capitalization, to refer to the project as a whole.
Thus, reserve the all-caps "SYSLINUX" to refer to the FAT
loader.
* mboot.c32: add "-solaris" option to pass DHCP information to
the Solaris kernel; required for automatic Solaris boot
without using Solaris' pxeboot program.
* config.c32: trivial COM32 module to restart Syslinux with
another configuration file from the command line (equivalent
to the CONFIG command in the configuratin file.)
Changes in 3.72:
* Include the pxechain.com module from Jeffery Hutzelman at
Carnegie Mellon University. This allows chaining another
PXE boot program while changing the DHCP packet passed to
it.
* Reorganize the Makefile system.
* Major PCI core cleanups and other source cleanup.
* gPXE code updated.
* Try to avoid memory-snooping attacks on passwords. Note
that if someone has root on the box, they generally don't
need to compromise the boot loader...
* ISOLINUX: fix crash when given a zero-length file.
* sdi.c32: support gzipped SDI images.
* ISOLINUX: support generating images which can be either
a CD-ROM or a hard disk (USB disk, etc.) See
doc/isolinux.txt for more information.
* Remote gdb support for COM32 modules; patch from Stefan
Hajnoczi.
* Support beeps in F-key help in the simple menu system.
* Tab display of labels, based on a patch from Sebastian
Herbszt. Can be disabled with the NOCOMPLETE configuration
command.
* "menu default" can now be specified after "menu begin", to
indicate that a specific submenu should be the default entry.
Changes in 3.71:
* Workaround for a VESA BIOS which tries to make DOS system
calls(!!)
* Simple menu: fix navigation around disabled entries
(or at least try to...)
* EXTLINUX: proper error message when confused about mount
point.
* MEMDISK: be smarter about incompletely disabled floppies in
the BIOS and about being the only floppy.
* Optionally allow initrd to be specified on a separate line
rather than as part of the "append" line. This is not
recommended, but apparently makes life easier for some
tools.
* SYSLINUX: if no config file is present, set the current
directory to the root directory (Sebastian Herbszt).
* chain.c32: option "hide" to support hiding and unhiding of
primary partitions on the boot drive with DOS, Win, or OS/2
partition types (01, 04, 06, 07, 0b, 0c, 0e).
* Unbreak the KBDMAP command (broken in 3.70).
* EXTLINUX: fix the handling of the ADV when using CBIOS.
* ifcpu64.c32: simple COM32 module to select a 32- or 64-bit
kernel (and optionally 32-bit kernels with or without PAE.)
Eventually we want a scripting language for this
kind of stuff; a Lua module is under development.
* Fix parsing of the SERIAL command without a baud rate
specified.
* chain.c32: error out when try to boot an unbootable
partition.
* SYSLINUX: when building the Win32 installer, search for
MinGW under a large number of possible names.
Changes in 3.70:
* PXELINUX: Support enhanced capabilities when running on top
of gPXE (http://www.etherboot.org/). In particular, support
URL-style syntax for filenames, and any protocol that gPXE
supports (except, currently, iSCSI and AoE.) This feature
is currently highly experimental.
* Substantial infrastructure changes to support files whose
length aren't known at open time (typically network
connections.) Please note that the semantics of some of the
comboot APIs have changed slightly; please see doc/comboot.txt.
* PXELINUX: We no longer require a TFTP server which supports
the tsize option for all transfers.
* PXELINUX: Integrate with the gPXE source base; unified image
now included as "gpxelinux.0".
* The source tree has been restructured; files that were
previously in the root have moved into the core, dos, gpxe,
and utils directories.
* "make install", "make netinstall", and "make extbootinstall"
have been updated massively. "make install-all" now installs
all three.
* Change default dir for auxiliary files from
/usr/lib/syslinux to /usr/share/syslinux.
* SYSLINUX: VFAT long filename support.
* MEMDISK: Any image less than 4096K (4 MB) is treated as a
floppy disk. The geometry-guessing code will recognize all
common extended formats, but it is still possible some very
exotic formats need geometry specification. Large floppies
and very small harddisks still need explicit specification.
* chain.c32: option "swap" to support swapping of BIOS drive
numbers. This is necessary to boot certain operating systems
(DOS, Windows) from a secondary drive.
* chain.c32: option "file=" to support loading a boot file from
the SYSLINUX filesystem instead of loading the boot sector
from the drive.
* chain.c32: option "seg=" to control the load location.
* chain.c32: option "ntldr=" as a shorthand for "seg=0x2000
file="; use this to load one of WinNT's loaders:
chain.c32 hd0 1 ntldr=/MiniNT/setupldr.bin
Note that the file needs to be in the SYSLINUX filesystem.
* chain.32: options "freedos=" and "msdos="/"pcdos=" as
shorthands for "seg=0x60 file=" and "seg=0x70 file="
respectively; use this to load FreeDOS's kernel.sys, MS-DOS's
io.sys or PC-DOS's ibmbio.sys.
* Change to the A20 algorithm which *MIGHT* help systems that
have systems which freeze when Syslinux is used with USB
keyboards. Note that this has been hard do verify, so I
would greatly appreciate feedback on it.
* Complex menu system: unbreak menus which has unnamed
submenus, like complex.c.
* Fix newline on the serial port for some com32 modules.
* chain.c32: support "boot" as the drive specification,
indicating the drive from which it was booted
(for syslinux/extlinux).
* SYSLINUX/EXTLINUX: support "localboot" with the same feature
set as ISOLINUX.
* Add an experimental MBR for GPT partition tables.
* Use $(CC) when determining compile flags.
* chain.c32: fix booting from logical partitions (Sergey
Vlasov.)
Changes in 3.63:
* Fix errors in the PCI and DMI detection modules (Erwan Velu,
Sebastian Herbszt).
* Fix host dependencies and other issues in the build system.
* PXELINUX: Allow class E addresses as unicast.
* sdi.c32: module to load Microsoft System Deployment Images.
For additional information, please see:
http://msdn2.microsoft.com/en-us/library/ms838543.aspx
* EXTLINUX: Correct reading directories with deleted entries.
* Shuffle library: correct the handling of certain geometries
(an upward move with source material blocking the move); as
required by sdi.c32 but theoretically possible for other
formats as well.
* Add "make netinstall" to install /tftpboot.
* Fix some documentation files that didn't get moved/renamed.
Changes in 3.62:
* Clean up garbage after "aborted." message.
* Clean up memdump.com filenames.
* Support SHA256 and SHA512 encrypted passwords.
* The shuffle library now can generate chained descriptors,
thus allowing pretty much arbitrarily complex memory maps.
* Handle command lines up to 2047 characters, the current
Linux kernel limit.
* vesamenu: support systems without linear framebuffer support
(sigh, what is this, 1993?) and 15-bit RGB modes.
* Move the label storage (for the command-line interface) to
high memory, removing the size limit and freeing up 64K of
low memory.
* Get rid of 4096-entry limit in the simple menu system.
* New hierarchial submenu support: see MENU BEGIN, MENU END,
MENU GOTO in doc/menu.txt.
* MENU QUIT allows creating a menu entry for returning to the
command line.
* ISOLINUX: Work around bug in certain Adaptec BIOSes,
patch by Bruce Robson.
* pngtopnm dependency removed from samples/ directory.
* Text documentation files (in doc/) renamed *.doc -> *.txt.
Changes in 3.61:
* EXTLINUX: fix crash when accessing an empty file.
* elf.c32: If a PHDR segment is present, load it.
* Fix SHA-1 and MD5 passwords.
* ISOLINUX: fix booting when mastered without
mkisofs -boot-info-table (broken since 3.50, sigh...)
* Handle BIOSes which emit multiple contiguous valid
memory regions in the e820 map.
Changes in 3.60:
* Support for "auxilliary data vector", a small amount of
writable storage. Currently only supported for EXTLINUX,
but the infrastructure is there for the other derivatives,
assuming a suitable storage location can be found.
* EXTLINUX: boot-once support (--once, --clear-once, and
--reset-adv).
* A command is now required to the EXTLINUX installer, i.e. at
least one of --install, --update, --once, --clear-once, or
--reset-adv.
Changes in 3.55:
* PXELINUX: as per RFC 5071, PXELINUX no longer requires the
use of the magic cookie option (208) for unencapsulated
options. Currently it does not require it for
vendor-encapsulated options (vendor-option-space) either,
but that MAY be reverted in the future if it causes
problems.
* Documentation text files moved to a common "doc" directory;
man pages from the Debian project added to the "man"
directory.
* Correct bug with self-overlapping memory areas when using
the shuffle interface.
Changes in 3.54:
* Add "menu separator", "menu indent", "menu disabled"
(see README.menu).
* vesamenu: fix handing of VESA modes with noncontiguous
memory buffers. In particular, Qemu/KVM sets up such a mode
when Cirrus Logic emulation is enabled (which is the
default.)
* Support for calling real mode functions using far calls,
with argument on the stack. This was implemented to support
the BIOS BBS specification, but subsequent experiments show
that the at least one of the most common BIOS cores, Award,
passes the presence check but doesn't actually implement the
functionality.
Changes in 3.53:
* Fix bugs related to the $PnP BIOS functionality on some
platforms.
* PXELINUX: Fix the "naked" version of :: (suppress prefix.)
* elf.c32: better error messages.
* Faster operation under Intel VT virtualization.
* PXELINUX: Fix DHCP bootfile option.
* mkdiskimage: Support more than 1024 cylinders.
* (Hopefully) fix installer on non-x86 platforms.
* Fix shuffle_and_boot_rm, used by linux.c32.
* Fix shuffle_and_boot_pm on 386/486.
* ISOLINUX (at least): fix bss memory overwrite hang.
* MBR: Fix booting from logical partitions.
* Code cleanups.
Changes in 3.52:
* Handle capitalized F-key commands in the menu system.
* Fix padding error when loading multiple ramdisks.
* Workaround for VMware crashing when trying to print a
message during early kernel boot (does not seem to work,
consider deleting.)
* chain.c32: add the ability to search for a specific MBR
signature at runtime.
* Fall back to the server identity option if the siaddr field
in the DHCP header isn't set. This seems to match the
behaviour of most PXE stacks.
* mkdiskimage: give the generated disk image an MBR signature.
* MEMDISK: Fix failures on some BIOSes.
* Simple menu system: new "MENU HIDDEN" option to not display
the menu unless the user presses a key.
* Simple menu system: support MD5-encrypted passwords (modern
Unix standard style, with "$1$" prefixes.)
* pcitest.c32: now functions as a full "lspci". Thanks to
Erwan Velu for this work.
* MEMDISK: Make EDD actually work.
* ISOLINUX: Fix for certain broken CD-ROM BIOSes which
randomly corrupted register FS.
* Simple menu system: fix memory overwrite bug that caused
some systems to lock up or behave weirdly.
* Fix building on 64-bit systems without a 32-bit libc installed.
Changes in 3.51:
* EXTLINUX: Fix failure to find the configuration file.
Changes in 3.50:
* New keywords allow the type of file to be specified in the
configuration file.
* It is now supported to load a different configuration file
with the CONFIG keyword.
* Fix API call 0x0019 (Read Disk.)
* MENU AUTOBOOT, MENU TABMSG, MENU PASSPROMPT allows
internationalization of menu messages.
* A new feature, TEXT HELP, allows the administrator to set
a multi-line help message for individual selections.
* Fix API call 0x0012 (Cleanup, shuffle and boot.)
* New API call "Cleanup, shuffle and boot to flat protected mode"
* New API call "Cleanup, shuffle and boot to real mode",
similar to API call 0x0012 but allows arbitrary register setting.
* Introduce a library interface for loading arbitrary binary
formats with relatively easily understood code. See
the elf.c32 module for an example on how to use it.
* New module "elf.c32", to load a protected-mode ELF kernel.
* MBR (old and new): Fix bug in CHS mode when LBA >
65535*sectors.
* vesamenu: fix decoding of palettized PNG images.
* Update the Linux kernel boot protocol.
* PXELINUX: Press Ctrl-N at the boot prompt to read out the
network info.
* Instead of the (non-existent) MAC, use the client identifier
for networks like Infiniband and Firewire/1394.
* Add a new INCLUDE command to the core syslinux parser.
* Allow binding help text to F11 and F12.
* F-key help now available in the simple menu system.
* Disabled the polling for ARP during idle. It is simply too
slow on some (broken!) PXE stacks.
* PXELINUX: also try to fetch the config file based on UUID.
* SYSLINUX/EXTLINUX: New RAID mode (-r) which calls the BIOS
to load the next device (typically the next drive) on boot
failure.
Changes in 3.36:
* MEMDISK: Disable EDD by default on floppy disks. EDD can be
enabled with the "edd" option and disabled with "noedd".
This (hopefully) should make Ghost work again.
* SYSLINUX: "unix" installer now uses Linux ioctls instead of
using libfat.
* New MBR which can boot from logical partitions.
* SYSLINUX: Fix bug in detecting special extensions which was
introduced in 3.35 :(
* PXELINUX: Unbreak chainbooting FreeBSD (and possibly others.)
Changes in 3.35:
* MEMDISK: New "safeint" mode.
* MEMDISK: Be more compliant with the PnP BIOS spec.
* MEMDISK: Turn on EDD support by default.
* MEMDISK: Try to work on some machines on which it would not
work when there was no floppy drive in the system.
* Simple menu system: fix serial console support (broken in
3.30).
* SYSLINUX: Support subdirectories. Like ISOLINUX, the
"current directory" is the directory in which syslinux.cfg
is found; this is searched for in the sequence
/boot/syslinux, /syslinux, /. As a side benefit, label names
like "linux-2.6.18" and "linux-2.6.19" are now supported.
To install ldlinux.sys in a subdirectory, pass the -d
directory option to the SYSLINUX installer.
This work was sponsored by slax.org (thanks, Tomas!)
* New API call: read disk.
* Invoke ONERROR on initrd load failure.
Changes in 3.31:
* The simple menu system (menu.c32 and vesamenu.c32) now
support loading more than one configuration file at a time,
using MENU INCLUDE or by specifying multiple filenames.
* The MENU COLOR statement can now control the shadowing mode.
Changes in 3.30:
* libcom32 extended to support graphics mode and graphical console.
* vesamenu.c32, new graphical version of the Simple
Menu System, see README.menu.
* New com32 modules by Erwan Velu do selection based on CPUID
or PCI devices present.
* RPM spec: add syslinux-tftpboot module; move syslinux by
default to the /usr/share/syslinux directory.
* RPM spec: extlinux is now a separate package.
Changes in 3.20:
* EXTLINUX: New options --install (-i) and --update (-U), to
make it clear if a boot loader should be installed or
updated. For now, defaults to --install for compatibility;
a future version will require one of these options.
* New library functions to load and place files in memory.
* mboot.c32 bug fixes.
* Remove 8 MB kernel size restriction.
* Add "klibc" target for building unix/syslinux and
extlinux/extlinux with klcc (klibc-1.4.27 or later.)
* PXELINUX: Fail (and eventually reboot) if no configuration
file was found.
* COM32 module by Erwan Velu to make decisions based on DMI
info.
* Fix issue where going back and forth between menus a lot
would cause a hang.
* ISOLINUX: Fix bug which made "cd boot sectors" not work.
Changes in 3.11:
* MEMDISK: Fix bug by which accessing the real floppy disk
as B: in MS-DOS was broken.
* Simple menu system: allow tweaking of the screen layout.
* Simple menu system: better command-line editing, correctly
handle command lines above 256 characters.
* PXELINUX: revert memory allocation change that caused
problems on some network cards.
* MEMDISK: Try work around a bug on some BIOSes when no
physical floppy disk is present in the system.
* Enable the 16550A FIFOs, if present, when doing serial
console.
* New "totaltimeout" command establishes a timeout without
regard for any user input.
* Simple menu system: timeout behaviour now more in line with
user expectations.
* Simple menu system: "ontimeout" should now work correctly.
Changes in 3.10:
* gcc 4.0.1 compilation fixes.
* Add support for querying the PCI BIOS in libcom32
(used by ethersel et al.)
* Fix PCI handing (ethersel etc) on several old chipsets (and
VMWare.)
* Try to deal with systems with broken EBIOS.
* New API call to do "localboot".
* New API call to query features.
* New API call to run kernel image, a lower-level call than
"run command". See comboot.doc.
* Fix for bug in EBIOS code discovered by Arwin Vosselman.
* NOESCAPE security fix.
* Comments are now recognized even without a space following #.
* Fix incorrect handling of mixes of entries with and without
MENU PASSWD.
* The idle API call now harmlessly returns failure if it is a
no-op. That way the caller can decide whether or not to
bother invoking it again.
* Temporarily disable the idle API call on PXELINUX, due to
some platforms on which the idle API call seems to hang; this
problem has not yet been debugged.
* MEMDISK: the handling of DOSEMU-headered images was broken;
fix it.
* EXTLINUX: symlinks are now supported.
* Simple menu system: N and P now work correctly as hotkeys.
* MEMDISK: more BIOS bug workarounds.
Changes in 3.09: