]> git.proxmox.com Git - grub2.git/blame - NEWS
Prefer more portable test(1) constructs
[grub2.git] / NEWS
CommitLineData
30a33846
CW
1New in 2.02:
2
3* New/improved filesystem and disk support:
4 * Big-endian UFS1.
5 * Experimental 64-bit ext2 support.
6 * Various fixes for non-512-byte sector devices.
7 * New `proc' filesystem framework, used by LUKS disks.
8 * Fix DM-RAID partition handling.
9 * New `nativedisk' command to switch from firmware to native disk drivers.
10 * Compressed HFS+.
11 * DragonFly BSD labels.
12 * CBFS (coreboot).
13 * Handle partitioned LVM properly.
14 * Use LVM UUIDs whenever possible.
15 * GPT PReP.
16 * New `progress' module that shows progress information while reading
17 files.
18
19* New/improved terminal and video support:
20 * Monochrome text (matching `hercules' in GRUB Legacy).
21 * Morse code output using system speaker.
22 * `spkmodem' output (simple data protocol using system speaker).
23 * Handle Japanese special keys.
24 * coreboot framebuffer.
25 * Serial on ARC.
26 * Native vt100 handling for grub-emu, replacing the use of the curses
27 library.
28 * New gfxmenu options for terminal window positioning, theme background
29 image handling, and scrollbar padding, plus `item_pixmap_style' and
30 `highlight_overlay'.
31 * Support several more image types (paletted and greyscale).
32
33* Boot protocol improvements:
34 * Support Apple FAT binaries on non-Apple platforms.
35 * Improve FreeDOS direct loading support compatibility.
36 * Enable `linux16' on all x86 platforms, not just BIOS.
37 * New TrueCrypt ISO loader.
0e309454
VS
38 * multiboot2 boot-services EFI specification.
39 * multiboot2 full-file specfication.
30a33846
CW
40
41* New/improved network support:
42 * New variables `net_default_*' containing properties of the default
43 interface.
44 * Autoload `http' and `tftp' modules if necessary.
45 * Improve TFTP robustness.
46 * Parse `nd' disk names in GRUB Legacy configuration files.
47 * Issue separate DNS queries for IPv4 and IPv6.
48
0e309454
VS
49* Coreboot improvements:
50 * CBFS support both in on-disk images (loopback) and flash.
51 * Ability to launch another payload from flash or disk
52 * Coreboot framebuffer
53 * CBMEMC support (both logging and inspecting logs)
54 * Inspecting coreboot timestamps.
55 * Inspecting coreboot tables.
56
30a33846
CW
57* New/improved platform support:
58 * New `efifwsetup' and `lsefi' commands on EFI platforms.
8442d3e9 59 * New `cmosdump' and `cmosset' commands on platforms with CMOS support.
30a33846
CW
60 * Improve opcode parsing in ACPI halt implementation.
61 * Use the TSC as a possible time source on i386-ieee1275.
62 * Merge PowerPC grub-mkrescue implementation with the common one.
63 * Support grub-mkrescue on i386-ieee1275, sparc64, bootinfo machines such
64 as pSeries, and mips-arc.
65 * Make grub-mkrescue better support Apple Intel Macs on CD.
66 * Enable GRUB Legacy configuration file parsing on EFI.
67 * Support halt for Loongson 2E.
68 * ARM U-Boot and EFI ports.
69 * Reorganise platform-dependent code in utilities to avoid #ifdef mess.
70 * AROS and Haiku support for userspace utilities.
71 * Xen PV port.
72 * Fix EFI stack alignment.
73 * ARM64 EFI port.
74 * On Linux, read partition start offsets from sysfs if possible.
75 * New grub-macbless utility, and better integration with Mac firmware in
76 grub-install.
77 * Support Yeeloong 3A.
78 * Add `cpuid --pae' option to detect Physical Address Extension on x86.
0e309454 79 * Support for USB debug dongles.
30a33846
CW
80
81* Security:
82 * Add optional facility to enforce that all files read by the core image
83 from disk have a valid detached digital signature.
84
85* Performance:
86 * Avoid costly division operations in many places.
87 * New boot time analysis framework (`./configure --enable-boot-time').
88 * Initialise USB ports in parallel.
89 * New `testspeed' command to test file read speed.
0e309454 90 * Speed-up gfxterm by storing intermediate results in more compact format.
30a33846
CW
91
92* Scripting:
93 * New `eval' and `tr' commands.
94 * grub-script-check fails on scripts containing no commands.
95
96* Installation and other utility improvements:
97 * Add option to compress files on installation or image creation.
98 * Using grub-reboot no longer requires setting `GRUB_DEFAULT=saved'.
99 * Support probing EFI System Partition (requires os-prober >= 1.58).
100 * Fix inconsistent use of `GRUB_CRYPTODISK_ENABLE' and
101 `GRUB_ENABLE_CRYPTODISK'; the latter is now used consistently.
102 * grub-mount handles symbolic links to directories.
103 * Support disabling submenus with `GRUB_DISABLE_SUBMENU' configuration key
104 for grub-mkconfig.
105 * grub-install, grub-mknetdir, grub-mkrescue, and grub-mkstandalone
106 rewritten in C. They should now work in supported non-Unix-like
107 environments.
0e309454 108 * Native mingw support, including ability to install on EFI under windows.
30a33846
CW
109 * Reorganise timeout handling using new `timeout_style' environment
110 variable and `GRUB_TIMEOUT_STYLE' configuration key for grub-mkconfig.
111 Menu hotkeys pressed during a hidden timeout now boot the corresponding
112 menu entry immediately.
113 * New `file' command and grub-file utility to check file types.
114 * New syslinux configuration file parser.
115
116* Build system:
117 * Remove all uses of nested functions; GRUB no longer requires an
118 executable stack.
119 * Fix documentation build with Texinfo >= 5.1.
120 * More robust and documented cross-compiling support.
0e309454
VS
121 * Partial clang support for some platforms (experimental).
122 * Partial mingw64 x86_64-efi compile support (highly experimental).
123 * Partial mingw32 i386-* (other than already present i386-pc)
124 compile support (highly experimental).
30a33846
CW
125 * Eliminate the use of AutoGen. This allowed some performance
126 improvements to the build system.
0e309454
VS
127 * Remove variable length arrays.
128 * OpenBSD compile and tools support (NetBSD and FreeBSD were already supported).
30a33846
CW
129 * Fix build with FreeType >= 2.5.1.
130 * Make gentpl.py compatible with Python 3. It now requires at least
131 Python 2.6.
0e309454
VS
132 * modinfo.sh contains build information now.
133 * Added many new tests to improve robustness.
30a33846
CW
134
135* Revision control moved to git.
136
d22029ba
VS
137New in 2.00:
138
f0f55752 139* Appearance:
d22029ba
VS
140 * Official theme for gfxmenu (starfield)
141 * Menu is organised with submenus.
142 * Better default video mode selection using EDID.
143
144* New platforms:
145 * Itanium port.
146 * Fuloong2F support (including GRUB as firmware)
147 * Fuloong2E support (except GRUB as firmware)
148 * ARCS (SGI machines) port.
149 * qemu -M mips port.
150
151* grub-mount to mount filesystems using GRUB FS drivers and FUSE.
152
153* Changed security default so entries are locked by default if any superuser is
154 defined.
155
156* New drivers:
157 * EHCI.
158 * AHCI.
159 * ESCC serial.
160 * IEEE1275 serial.
161 * EFI serial.
162 * Network stack for BIOS, IEEE1275, EMU and EFI, including TFTP, HTTP and DNS.
d22029ba
VS
163
164* New filesystem, filters and disks formats:
165 * DVH partition map.
166 * Plan9 partition map.
167 * Big-endian mdraid.
168 * Big-endian cpio.
169 * ODC and NEWC cpio.
170 * ExFAT.
171 * Minix3fs.
172 * Big-endian minixfs.
173 * RomFS.
174 * Squash4.
175 * Support non-512B disk blocks.
176 * LUKS and GELI support.
177 * LDM read support (no install yet).
178 * LZOP.
179
180* Improved filesystem and disks formats support:
181 * HFS+ label support.
182 * Improved reiserfs support.
183 * multidevice, mirrored and raidz(2,3) ZFS support.
184 * RAID LVM (internal RAIDing) support.
185 * ZFS crypto support.
0e309454 186 * ZLE, LZ4 and GZIP on ZFS support.
d22029ba
VS
187 * Support ZFS up to 33.
188 * HFS string is now treated like mac-roman and not UTF-8
189 * HFS mtime support.
190 * Improved AFFS and SFS support.
191 * LZO-compressed btrfs support.
192 * cpio and tar symlinks support.
193 * Better FS detection to reduce false positives.
194
195* New boot protocols:
196 * Ability to load another coreboot payload when on coreboot.
197 * Plan9.
198 * Freedos.
0c4f85f6
VS
199 * Ntldr/bootmgr (to load Windows bootloader).
200 * chainloader --bpb support to patch FAT or NTFS BPB in memory to correct
201 wrong partition offset.
d22029ba
VS
202 * PXE chainloading support.
203 * Darwin 11 (Mac OS X Lion) protocol support.
204
205* Boot protocol improvements:
206 * Multiple initrd support.
207 * Basic illumos and xnu autoconfig.
208
209* Testing and debugging:
210 * New grub-fstest commands: cat, zfsinfo, testload xnu_uuid
0c4f85f6
VS
211 * grub-fstest recursive directory compare for quickly checking that
212 a directory is read correctly.
d22029ba
VS
213 * Backtace on crash (if gdb module is loaded, x86 only)
214 * Disk cache statistics gathering.
215 * GDB stub and GDB support script.
216 * "make check" and "make bootcheck" expanded to almost all platforms
217 (except i386-ieee1275, mips-arc, sparc64-ieee1275, ia64-efi and emu)
218 * New `time' command.
219
220* Performance:
0c4f85f6
VS
221 * Lazy scanning to avoid accessing devices which aren't really used.
222 This avoids boot delay due to slow device scanning.
d22029ba 223 * Use CPU cache when accessing video memory.
0c4f85f6
VS
224 * Search hints to first try the most likely device when searching for a
225 device with given UUID. This avoids slow scanning in most cases.
d22029ba
VS
226
227* Internationalisation:
228 * Updated to Unicode 6.0.
0c4f85f6 229 * $"..." syntax for translation in grub scripting language. This allows easy
d22029ba
VS
230 translation of grub.cfg at runtime.
231 * Translations to many languages included in official distribution.
232
233* Scripting:
234 * $grub_cpu and $grub_platform variables for conditioning grub.cfg on platform
0c4f85f6 235 at runtime.
d22029ba
VS
236 * $feature_* variables to condition scripts on available features.
237 * Use of ids to identify menu entries.
238 * all_video module which is empty but depends on all video modules thus
239 allowing easy loading of all of them.
240
241* Installation:
242 * grub-mknetdir script for easy creation of netbootable GRUB directory.
243 * Itanium and mips support in grub-mkrescue.
244 * grub-install support for all platforms except emu.
245 * PreP partition install support.
246 * No files conflict between flavours (except grub-mkrescue for ppc). This
247 allows easy install of GRUB for several platforms.
248 * grub-mkstandalone script for easy creating of image including all modules
249 for platforms with generous limit on image size.
250 * program-transform-name now functions according to usual conventions.
251 Use --grubdir and --bootdir to get old behaviour.
252
253* ADLER32 and CRC64 support (for XZ and hashsum).
254
255* ofconsole renamed to console
256
257* Experimental support for compiling with Apple toolchain.
258
0c4f85f6
VS
259* grub-mkdevicemap removed. Now all devices are detected on invocation of
260 any grub utility.
d22029ba 261
215dd471
RM
262New in 1.99:
263
61c874c5
CW
264* Keyboard layouts support.
265
266* New `lsapm' command (i386-pc only).
267
268* Parser for GRUB Legacy configuration files.
269
270* Support RAID on virtio devices.
271
272* Remove deprecated `root' command.
273
274* New `euro.pf2' font which supports most European languages.
275
276* Avoid opening the same device twice on Open Firmware platforms.
277
278* Extend `vbeinfo' and `vbetest' commands to non-VBE graphics, as
279 `videoinfo' and `videotest'.
280
40901acd 281* New `lsefisystab', `lssal', and `lsefimmap' commands on EFI platforms.
61c874c5
CW
282
283* Support explicit user claim that a device is BIOS-visible. Devices
284 listed in device.map will be assumed to be readable using only BIOS
285 facilities, rather than anything more complex such as LVM or RAID.
286
287* New bash-completion script for GRUB utilities.
288
289* Use ACPI to shut down if possible.
290
291* New `lsacpi' command.
292
ec9f5e0d 293* Btrfs support.
61c874c5
CW
294
295* New `--boot-directory' option to `grub-install', `grub-reboot', and
296 `grub-set-default', with clearer semantics than the previous
297 `--root-directory' option.
298
299* Rename CD-ROM device to "cd" on BIOS platforms.
300
301* Transparent decompression filters.
302
303* Simpler PXE image generation. New `grub-mknetdir' utility to generate
304 netboot directory trees.
305
f9cefc4e
CW
306* New relocator. Allows for more kernel support and more
307 straightforward loader writing.
308
309* Handle USB pendrives exposed as floppies.
310
311* New Automake-based build system.
312
313* Add `sendkey' command (i386-pc only).
314
a94a6671 315* ZFS support.
215dd471 316
f9cefc4e
CW
317* Support 1.x versions of mdadm metadata.
318
319* Fix corruption when reading Reiserfs directory entries.
320
321* Bidirectional text and diacritics support.
322
323* Skip LVM snapshots.
324
325* MIPS Yeeloong firmware port.
326
327* Change grub-mkdevicemap to emit /dev/disk/by-id/ names where possible
328 on GNU/Linux.
329
330* Add `grub-mkconfig' support for Xen with Linux.
331
332* Add `grub-mkconfig' support for initrd images on Fedora 13.
333
334* Support >3GiB and <16MiB RAM in i386-qemu.
335
336* Add support for Cirrus 5446 and Bochs video cards.
337
338* Load more appropriate video drivers automatically in `grub-mkconfig'.
339
340* USB improvements, including hotplugging/hotunplugging, hub support,
341 and USB serial support.
342
343* AMD Geode CS5536 support.
344
345* Extensive updates to the Texinfo documentation.
346
f9cefc4e
CW
347* Handle symbolic links under /dev/mapper on GNU/Linux.
348
349* Handle installation across multiple partition table types.
350
351* Add `cmostest' command (i386/x86_64 only).
352
353* Add support for DM-RAID disk devices on GNU/Linux.
354
355* Remove `grub-mkisofs'. `grub-mkrescue' now uses GNU xorriso to build
356 CD images.
357
358* `grub-mkrescue' support for EFI, coreboot, and QEMU platforms.
359
61c874c5
CW
360* Unify `grub-mkimage', `grub-setup', and `grub-install' source code
361 across platforms.
f9cefc4e
CW
362
363* Fix VGA (as opposed to VBE) video driver, formerly a terminal driver.
364
365* Add menu hotkey support.
366
367* Add support for the nilfs2 filesystem.
368
369* `grub-probe' and `grub-mkconfig' support for NetBSD.
370
371* Support setting a background image in `grub-mkconfig'.
372
373* Support multiple terminals in `grub-mkconfig'.
374
375* Regexp support.
376
377* MIPS multiboot2 support.
378
379* Multiboot2 tag support.
380
381* sunpc partition table support.
382
383* Add a number of new language features to GRUB script: `for', `while',
61c874c5
CW
384 `until', `elif', function parameters, `break', `continue', `shift',
385 multi-line quoted strings, positional parameters with `setparams',
386 `return', filename wildcard expansion, and `!'.
f9cefc4e
CW
387
388* Support nested partition tables. GRUB now prefers to name partitions
389 in the form `(hd0,msdos1,bsd1)' rather than `(hd0,1,a)'.
390
391* Speed up consecutive hostdisk operations on the same device.
392
393* Compile parts of `grub-emu' as modules.
394
fce5d8ff 395New in 1.98 - 2010-03-06:
1fbc5e66 396
fcee14ed
VS
397* Multiboot on EFI support.
398
c98d2a13
CW
399* Graphical menu support.
400
401* MIPS support.
402
403* Saved default menu entry support, with new utilities `grub-reboot' and
404 `grub-set-default'.
405
406* Unit testing framework.
407
408* Support for multiple terminals.
409
410* Encrypted password support, with a new utility `grub-mkpasswd-pbkdf2'.
411
412* `grub-mkfloppy' removed; use `grub-mkrescue' to create floppy images.
413
7922f68b
RM
414* Add grub-probe support for GNU/Hurd.
415
3db5183c
CPE
416* Add support for gettext.
417
537ce47f
RM
418New in 1.97:
419
d2b6b7fc 420* Add support for loading XNU (MacOS X kernel).
421bd7ac 421
422* ACPI override support.
423
424* Integrated gptsync.
425
426* Password protection support.
427
428* Partition manipulation tool.
429
70ba68ce 430* Add `keystatus' command.
431
432* Unicode fonts are now used by default.
433
fd8c967c 434* Add `hdparm' command.
435
436* Add support for getting the current date and time from CMOS as variables.
437
438* Add `drivemap' command.
439
440* Add support for RAID levels 4,6 and 10.
441
d2b6b7fc 442* update-grub is replaced by grub-mkconfig.
6d994591 443
1fbc5e66 444* When booting from PXE, PXE can be used to load files.
445
446* High resolution timer support.
447
448* Image loaders now support IO buffering.
449
450* Add `crc' command.
451
54d83746 452* Add Cygwin support.
453
1fbc5e66 454* Add x86_64 EFI support.
455
5680109e 456* Use LZMA compression instead of LZO.
1fbc5e66 457
458* Support for saving the environment from and loading the environment
459 from a file.
460
461* Allow the UUID to be used as device name.
462
463* The `search' command can use UUIDs now.
464
465* Add support for IEEE 1275 on i386.
466
467* Create partmap.lst and use it to automatically load partition map
468 modules.
469
6d994591 470* grub-mkconfig supports os-prober to add operating systems to the
54d83746 471 boot menu.
1fbc5e66 472
d2b6b7fc 473* The ATA driver supports devices bigger than 2 TiB.
1fbc5e66 474
2fc96ba3 475* Add support for the UDF, AFS and EXT4 filesystems.
1fbc5e66 476
2fc96ba3 477* The ISO9660 filesystem supports the Joliet extension
1fbc5e66 478
d2b6b7fc 479* Add support for loading kernels of FreeBSD, NetBSD and OpenBSD.
1fbc5e66 480
481* Add new command `sleep'.
482
483* Support for direct access to AT keyboards.
484
485* New utility `grub-fstest'.
486
f2a76e1d 487New in 1.96 - 2008-02-03:
5a79f472 488
489* The license term is changed to GNU General Public License Version 3.
490
352466bf 491* grub-emu is made optional. Now you have to use
492 `--enable-grub-emu' to enable it.
493
494* Add Multiboot2 support.
495
496* grub-emu can access the host filesystem now.
497
2216b101 498* Add support for the NTFS, cpio/tar and Reiserfs filesystems.
352466bf 499
e911ecc1 500* Add support for ATA/ATAPI.
501
2216b101 502* Add update-grub script to generate grub.cfg.
503
504* Add grub-mkrescue script to generate floppy or ElTorito images
505 (i386-pc only).
506
507* Add support for background images in gfxterm (background_image command).
508
509* Add support for detection of 64-bit support in CPU (cpuid command).
510
511* GPT is now enabled in i386-pc target.
512
513* Add grub-install for EFI.
514
515* Ported to the following new platforms: Efika, coreboot (a.k.a. LinuxBIOS),
516 OLPC XO.
517
518* Add support for colored menu (menu_color_normal and menu_color_highlight
519 variables).
520
521* Fix support for loading Linux zImages (such as memtest86).
522
5d74d927 523New in 1.95 - 2006-10-15:
deae281b 524
525* Number partitions from 1 instead of 0. For instance, the first
526 partition of "hd0" is now "hd0,1" but not "hd0,0".
527
df247e5e 528* grub-probefs is renamed to grub-probe, and supports printing a
529 guessed OS device name and a GRUB drive name.
530
531* RAID and LVM support is added.
532
533* New command, echo.
534
535* The disk API is changed to support 64-bit addressing.
536
537* A TGA loader is added for the video API.
538
53af98ad 539New in 1.94 - 2006-06-04:
118f4fb3 540
541* Fix several serious bugs in HFS+.
542
543* Add experimental EFI support. Chainloading and Linux loading are
544 supported at the moment.
545
546* Add a new command "blocklist" to show a block list.
547
548* Use --with-platform to specify a boot environment. For now, efi,
549 ieee1275 and pc are supported.
550
551* Use the filename "kernel.elf" instead of "grubof" on ieee1275.
552
553* Install GRUB into pkglibdir instead of pkgdatadir.
554
555* Support environmental variables. You can export variables by the
556 command "export".
557
558* Remove the commands "default" and "timeout". They are now variables.
559
560* Add the commands "source" and "." to include a file.
561
562* Implement experimental Video API and a new terminal "gfxterm" based
563 on the Video API.
564
565
5f97350b 566New in 1.93 - 2006-03-10:
567
568* Add support for the HFS+ wrapper.
569
570* Major improvements to scripting support.
571
572* Menu entries are now scriptable.
573
c9a86192 574
3bbfa267 575New in 1.92 - 2005-12-25:
576
577* Add support for GPT partition table format.
578
579* Add a new command "play" to play an audio file on PC.
580
581* Add support for Linux/ADFS partition table format.
582
583* Add support for BASH-like scripting.
584
50214199 585* Add support for Apple HFS+ filesystems.
3bbfa267 586
b5179ea0 587
4801580b 588New in 1.91 - 2005-10-15:
4ac9bd04 589
590* Add support for LZO version 2.
591
992ffbbe 592* Support completion in the entry editor.
593
594* Add VBE support.
595
6a85ce79 596* New commands, "search", "vbetest" and "vbeinfo".
597
16ccb8b1 598* The option BOOT_IMAGE is passed to Linux.
599
d9864ee1 600* Add support for automatic decompression for gzip.
601
5d7396f5 602* Add support for terminfo and serial.
603
5c177389 604* Add support for x86_64.
605
606* GRUB itself is a Multiboot-compliant kernel.
607
608* Add new filesystems: XFS, SFS, and AFFS.
609
992ffbbe 610
4ac9bd04 611New in 1.90 - 2005-08-07:
4b13b216 612
613* Rename the project name PUPA to GRUB. Now this version is the
614 developmental version of GRUB officially.
615
616* The GRUB emulator ``grub-emu'' is added.
617
618* Add support for newworld Mac. This should work with other
619 PowerPC-based machines as well, if they use IEEE 1275
620 (Open Firmware).
621
0e143073 622* Too many changes to describe. Look at ChangeLog for more details.
623
4b13b216 624
9962ed99 625New in 0.7:
626
627* Problems in cross-compiling PUPA are fixed.
628
62ddcc8f 629* Use -mrtd and -mregparm=3 to reduce the generated code sizes. This
630 means that any missing prototypes could be fatal. Also, you must take
631 care when writing assembly code. See the comments at the beginning of
632 startup.S, for more details.
633
012d7999 634* New utility, ``pupa-setup''. This sets up PUPA to make it bootable
635 from a real disk.
636
a5ffe966 637* New commands, "prefix", "insmod", "rmmod" and "lsmod" are added into
638 the rescue mode to manipulate PUPA modules.
639
c04da074 640* Linux support is added. Initrd is not support yet.
641
1f5ab428 642* Reduce the size of a core image significantly by compressing a large
643 part of the core image and decompressing itself at boot time. The
644 currently used algorithm is LZO (more precisely, LZO1X-999). So you
645 have to install LZO to build PUPA. See
646 <http://www.oberhumer.com/opensource/lzo/>, for more information.
647
a5ffe966 648
6a161fa9 649New in 0.6 - 2002-12-27, Yoshinori K. Okuji:
650
651* The chainloader and the FAT filesystem are modularized.
652
653* The structure of the source tree is a bit changed.
654
655* Support for building loadable modules is added.
656
657* Some generic parts of pupa-mkimage are segregated.
658
659* Some documentation files are added, according to the GNU Coding
660 Standards.