NEWS 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673
  1. New in 2.02:
  2. * New/improved filesystem and disk support:
  3. * Big-endian UFS1.
  4. * Experimental 64-bit ext2 support.
  5. * Various fixes for non-512-byte sector devices.
  6. * New `proc' filesystem framework, used by LUKS disks.
  7. * Fix DM-RAID partition handling.
  8. * New `nativedisk' command to switch from firmware to native disk drivers.
  9. * Compressed HFS+.
  10. * DragonFly BSD labels.
  11. * CBFS (coreboot).
  12. * Handle partitioned LVM properly.
  13. * Use LVM UUIDs whenever possible.
  14. * GPT PReP.
  15. * New `progress' module that shows progress information while reading
  16. files.
  17. * ZFS features support.
  18. * ZFS LZ4 support.
  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. * Boot protocol improvements:
  33. * Support Apple FAT binaries on non-Apple platforms.
  34. * Improve FreeDOS direct loading support compatibility.
  35. * Enable `linux16' on all x86 platforms, not just BIOS.
  36. * New TrueCrypt ISO loader.
  37. * multiboot2 boot-services EFI specification.
  38. * multiboot2 EFI memory map specification.
  39. * multiboot2 full-file specfication.
  40. * New/improved network support:
  41. * New variables `net_default_*' containing properties of the default
  42. interface.
  43. * Autoload `http' and `tftp' modules if necessary.
  44. * Improve TFTP robustness.
  45. * Parse `nd' disk names in GRUB Legacy configuration files.
  46. * Issue separate DNS queries for IPv4 and IPv6.
  47. * Coreboot improvements:
  48. * CBFS support both in on-disk images (loopback) and flash.
  49. * Ability to launch another payload from flash or disk
  50. * Coreboot framebuffer
  51. * CBMEMC support (both logging and inspecting logs)
  52. * Command for inspecting coreboot timestamps (`coreboot_boottime').
  53. * Command for inspecting coreboot tables (`lscoreboot').
  54. * New target default_payload.elf.
  55. * Increased maximal core size.
  56. * New/improved platform support:
  57. * New `efifwsetup' and `lsefi' commands on EFI platforms.
  58. * New `cmosdump' and `cmosset' commands on platforms with CMOS support.
  59. * New command `pcidump' for PCI platforms.
  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.
  79. * Support for USB debug dongles.
  80. * Support for *-emu on all platforms (previously only i386/x86_64 worked).
  81. * Support *-emu on Windows.
  82. * Security:
  83. * Add optional facility to enforce that all files read by the core image
  84. from disk have a valid detached digital signature.
  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.
  90. * Speed-up gfxterm by storing intermediate results in more compact format.
  91. * Lazy LVM/mdraid scan.
  92. * Disk hints.
  93. * Scripting:
  94. * New `eval' and `tr' commands.
  95. * grub-script-check fails on scripts containing no commands.
  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.
  108. * Native mingw support.
  109. * Ability to install on EFI under windows.
  110. * Reorganise timeout handling using new `timeout_style' environment
  111. variable and `GRUB_TIMEOUT_STYLE' configuration key for grub-mkconfig.
  112. Menu hotkeys pressed during a hidden timeout now boot the corresponding
  113. menu entry immediately.
  114. * New `file' command and grub-file utility to check file types.
  115. * New syslinux configuration file parser.
  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.
  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).
  125. * Support for grub-mkpasswd on Windows.
  126. * Eliminate the use of AutoGen. This allowed some performance
  127. improvements to the build system.
  128. * Remove variable length arrays.
  129. * OpenBSD compile and tools support (NetBSD and FreeBSD were already supported).
  130. * Fix build with FreeType >= 2.5.1.
  131. * Make gentpl.py compatible with Python 3. It now requires at least
  132. Python 2.6.
  133. * modinfo.sh contains build information now.
  134. * Added many new tests to improve robustness.
  135. * Revision control moved to git.
  136. New in 2.00:
  137. * Appearance:
  138. * Official theme for gfxmenu (starfield)
  139. * Menu is organised with submenus.
  140. * Better default video mode selection using EDID.
  141. * New platforms:
  142. * Itanium port.
  143. * Fuloong2F support (including GRUB as firmware)
  144. * Fuloong2E support (except GRUB as firmware)
  145. * ARCS (SGI machines) port.
  146. * qemu -M mips port.
  147. * grub-mount to mount filesystems using GRUB FS drivers and FUSE.
  148. * Changed security default so entries are locked by default if any superuser is
  149. defined.
  150. * New drivers:
  151. * EHCI.
  152. * AHCI.
  153. * ESCC serial.
  154. * IEEE1275 serial.
  155. * EFI serial.
  156. * Network stack for BIOS, IEEE1275, EMU and EFI, including TFTP, HTTP and DNS.
  157. * New filesystem, filters and disks formats:
  158. * DVH partition map.
  159. * Plan9 partition map.
  160. * Big-endian mdraid.
  161. * Big-endian cpio.
  162. * ODC and NEWC cpio.
  163. * ExFAT.
  164. * Minix3fs.
  165. * Big-endian minixfs.
  166. * RomFS.
  167. * Squash4.
  168. * Support non-512B disk blocks.
  169. * LUKS and GELI support.
  170. * LDM read support (no install yet).
  171. * LZOP.
  172. * Improved filesystem and disks formats support:
  173. * HFS+ label support.
  174. * Improved reiserfs support.
  175. * multidevice, mirrored and raidz(2,3) ZFS support.
  176. * RAID LVM (internal RAIDing) support.
  177. * ZFS crypto support.
  178. * ZLE, LZ4 and GZIP on ZFS support.
  179. * Support ZFS up to 33.
  180. * HFS string is now treated like mac-roman and not UTF-8
  181. * HFS mtime support.
  182. * Improved AFFS and SFS support.
  183. * LZO-compressed btrfs support.
  184. * cpio and tar symlinks support.
  185. * Better FS detection to reduce false positives.
  186. * New boot protocols:
  187. * Ability to load another coreboot payload when on coreboot.
  188. * Plan9.
  189. * Freedos.
  190. * Ntldr/bootmgr (to load Windows bootloader).
  191. * chainloader --bpb support to patch FAT or NTFS BPB in memory to correct
  192. wrong partition offset.
  193. * PXE chainloading support.
  194. * Darwin 11 (Mac OS X Lion) protocol support.
  195. * Boot protocol improvements:
  196. * Multiple initrd support.
  197. * Basic illumos and xnu autoconfig.
  198. * Testing and debugging:
  199. * New grub-fstest commands: cat, zfsinfo, testload xnu_uuid
  200. * grub-fstest recursive directory compare for quickly checking that
  201. a directory is read correctly.
  202. * Backtace on crash (if gdb module is loaded, x86 only)
  203. * Disk cache statistics gathering.
  204. * GDB stub and GDB support script.
  205. * "make check" and "make bootcheck" expanded to almost all platforms
  206. (except i386-ieee1275, mips-arc, sparc64-ieee1275, ia64-efi and emu)
  207. * New `time' command.
  208. * Performance:
  209. * Lazy scanning to avoid accessing devices which aren't really used.
  210. This avoids boot delay due to slow device scanning.
  211. * Use CPU cache when accessing video memory.
  212. * Search hints to first try the most likely device when searching for a
  213. device with given UUID. This avoids slow scanning in most cases.
  214. * Internationalisation:
  215. * Updated to Unicode 6.0.
  216. * $"..." syntax for translation in grub scripting language. This allows easy
  217. translation of grub.cfg at runtime.
  218. * Translations to many languages included in official distribution.
  219. * Scripting:
  220. * $grub_cpu and $grub_platform variables for conditioning grub.cfg on platform
  221. at runtime.
  222. * $feature_* variables to condition scripts on available features.
  223. * Use of ids to identify menu entries.
  224. * all_video module which is empty but depends on all video modules thus
  225. allowing easy loading of all of them.
  226. * Installation:
  227. * grub-mknetdir script for easy creation of netbootable GRUB directory.
  228. * Itanium and mips support in grub-mkrescue.
  229. * grub-install support for all platforms except emu.
  230. * PreP partition install support.
  231. * No files conflict between flavours (except grub-mkrescue for ppc). This
  232. allows easy install of GRUB for several platforms.
  233. * grub-mkstandalone script for easy creating of image including all modules
  234. for platforms with generous limit on image size.
  235. * program-transform-name now functions according to usual conventions.
  236. Use --grubdir and --bootdir to get old behaviour.
  237. * ADLER32 and CRC64 support (for XZ and hashsum).
  238. * ofconsole renamed to console
  239. * Experimental support for compiling with Apple toolchain.
  240. * grub-mkdevicemap removed. Now all devices are detected on invocation of
  241. any grub utility.
  242. New in 1.99:
  243. * Keyboard layouts support.
  244. * New `lsapm' command (i386-pc only).
  245. * Parser for GRUB Legacy configuration files.
  246. * Support RAID on virtio devices.
  247. * Remove deprecated `root' command.
  248. * New `euro.pf2' font which supports most European languages.
  249. * Avoid opening the same device twice on Open Firmware platforms.
  250. * Extend `vbeinfo' and `vbetest' commands to non-VBE graphics, as
  251. `videoinfo' and `videotest'.
  252. * New `lsefisystab', `lssal', and `lsefimmap' commands on EFI platforms.
  253. * Support explicit user claim that a device is BIOS-visible. Devices
  254. listed in device.map will be assumed to be readable using only BIOS
  255. facilities, rather than anything more complex such as LVM or RAID.
  256. * New bash-completion script for GRUB utilities.
  257. * Use ACPI to shut down if possible.
  258. * New `lsacpi' command.
  259. * Btrfs support.
  260. * New `--boot-directory' option to `grub-install', `grub-reboot', and
  261. `grub-set-default', with clearer semantics than the previous
  262. `--root-directory' option.
  263. * Rename CD-ROM device to "cd" on BIOS platforms.
  264. * Transparent decompression filters.
  265. * Simpler PXE image generation. New `grub-mknetdir' utility to generate
  266. netboot directory trees.
  267. * New relocator. Allows for more kernel support and more
  268. straightforward loader writing.
  269. * Handle USB pendrives exposed as floppies.
  270. * New Automake-based build system.
  271. * Add `sendkey' command (i386-pc only).
  272. * ZFS support.
  273. * Support 1.x versions of mdadm metadata.
  274. * Fix corruption when reading Reiserfs directory entries.
  275. * Bidirectional text and diacritics support.
  276. * Skip LVM snapshots.
  277. * MIPS Yeeloong firmware port.
  278. * Change grub-mkdevicemap to emit /dev/disk/by-id/ names where possible
  279. on GNU/Linux.
  280. * Add `grub-mkconfig' support for Xen with Linux.
  281. * Add `grub-mkconfig' support for initrd images on Fedora 13.
  282. * Support >3GiB and <16MiB RAM in i386-qemu.
  283. * Add support for Cirrus 5446 and Bochs video cards.
  284. * Load more appropriate video drivers automatically in `grub-mkconfig'.
  285. * USB improvements, including hotplugging/hotunplugging, hub support,
  286. and USB serial support.
  287. * AMD Geode CS5536 support.
  288. * Extensive updates to the Texinfo documentation.
  289. * Handle symbolic links under /dev/mapper on GNU/Linux.
  290. * Handle installation across multiple partition table types.
  291. * Add `cmostest' command (i386/x86_64 only).
  292. * Add support for DM-RAID disk devices on GNU/Linux.
  293. * Remove `grub-mkisofs'. `grub-mkrescue' now uses GNU xorriso to build
  294. CD images.
  295. * `grub-mkrescue' support for EFI, coreboot, and QEMU platforms.
  296. * Unify `grub-mkimage', `grub-setup', and `grub-install' source code
  297. across platforms.
  298. * Fix VGA (as opposed to VBE) video driver, formerly a terminal driver.
  299. * Add menu hotkey support.
  300. * Add support for the nilfs2 filesystem.
  301. * `grub-probe' and `grub-mkconfig' support for NetBSD.
  302. * Support setting a background image in `grub-mkconfig'.
  303. * Support multiple terminals in `grub-mkconfig'.
  304. * Regexp support.
  305. * MIPS multiboot2 support.
  306. * Multiboot2 tag support.
  307. * sunpc partition table support.
  308. * Add a number of new language features to GRUB script: `for', `while',
  309. `until', `elif', function parameters, `break', `continue', `shift',
  310. multi-line quoted strings, positional parameters with `setparams',
  311. `return', filename wildcard expansion, and `!'.
  312. * Support nested partition tables. GRUB now prefers to name partitions
  313. in the form `(hd0,msdos1,bsd1)' rather than `(hd0,1,a)'.
  314. * Speed up consecutive hostdisk operations on the same device.
  315. * Compile parts of `grub-emu' as modules.
  316. New in 1.98 - 2010-03-06:
  317. * Multiboot on EFI support.
  318. * Graphical menu support.
  319. * MIPS support.
  320. * Saved default menu entry support, with new utilities `grub-reboot' and
  321. `grub-set-default'.
  322. * Unit testing framework.
  323. * Support for multiple terminals.
  324. * Encrypted password support, with a new utility `grub-mkpasswd-pbkdf2'.
  325. * `grub-mkfloppy' removed; use `grub-mkrescue' to create floppy images.
  326. * Add grub-probe support for GNU/Hurd.
  327. * Add support for gettext.
  328. New in 1.97:
  329. * Add support for loading XNU (MacOS X kernel).
  330. * ACPI override support.
  331. * Integrated gptsync.
  332. * Password protection support.
  333. * Partition manipulation tool.
  334. * Add `keystatus' command.
  335. * Unicode fonts are now used by default.
  336. * Add `hdparm' command.
  337. * Add support for getting the current date and time from CMOS as variables.
  338. * Add `drivemap' command.
  339. * Add support for RAID levels 4,6 and 10.
  340. * update-grub is replaced by grub-mkconfig.
  341. * When booting from PXE, PXE can be used to load files.
  342. * High resolution timer support.
  343. * Image loaders now support IO buffering.
  344. * Add `crc' command.
  345. * Add Cygwin support.
  346. * Add x86_64 EFI support.
  347. * Use LZMA compression instead of LZO.
  348. * Support for saving the environment from and loading the environment
  349. from a file.
  350. * Allow the UUID to be used as device name.
  351. * The `search' command can use UUIDs now.
  352. * Add support for IEEE 1275 on i386.
  353. * Create partmap.lst and use it to automatically load partition map
  354. modules.
  355. * grub-mkconfig supports os-prober to add operating systems to the
  356. boot menu.
  357. * The ATA driver supports devices bigger than 2 TiB.
  358. * Add support for the UDF, AFS and EXT4 filesystems.
  359. * The ISO9660 filesystem supports the Joliet extension
  360. * Add support for loading kernels of FreeBSD, NetBSD and OpenBSD.
  361. * Add new command `sleep'.
  362. * Support for direct access to AT keyboards.
  363. * New utility `grub-fstest'.
  364. New in 1.96 - 2008-02-03:
  365. * The license term is changed to GNU General Public License Version 3.
  366. * grub-emu is made optional. Now you have to use
  367. `--enable-grub-emu' to enable it.
  368. * Add Multiboot2 support.
  369. * grub-emu can access the host filesystem now.
  370. * Add support for the NTFS, cpio/tar and Reiserfs filesystems.
  371. * Add support for ATA/ATAPI.
  372. * Add update-grub script to generate grub.cfg.
  373. * Add grub-mkrescue script to generate floppy or ElTorito images
  374. (i386-pc only).
  375. * Add support for background images in gfxterm (background_image command).
  376. * Add support for detection of 64-bit support in CPU (cpuid command).
  377. * GPT is now enabled in i386-pc target.
  378. * Add grub-install for EFI.
  379. * Ported to the following new platforms: Efika, coreboot (a.k.a. LinuxBIOS),
  380. OLPC XO.
  381. * Add support for colored menu (menu_color_normal and menu_color_highlight
  382. variables).
  383. * Fix support for loading Linux zImages (such as memtest86).
  384. New in 1.95 - 2006-10-15:
  385. * Number partitions from 1 instead of 0. For instance, the first
  386. partition of "hd0" is now "hd0,1" but not "hd0,0".
  387. * grub-probefs is renamed to grub-probe, and supports printing a
  388. guessed OS device name and a GRUB drive name.
  389. * RAID and LVM support is added.
  390. * New command, echo.
  391. * The disk API is changed to support 64-bit addressing.
  392. * A TGA loader is added for the video API.
  393. New in 1.94 - 2006-06-04:
  394. * Fix several serious bugs in HFS+.
  395. * Add experimental EFI support. Chainloading and Linux loading are
  396. supported at the moment.
  397. * Add a new command "blocklist" to show a block list.
  398. * Use --with-platform to specify a boot environment. For now, efi,
  399. ieee1275 and pc are supported.
  400. * Use the filename "kernel.elf" instead of "grubof" on ieee1275.
  401. * Install GRUB into pkglibdir instead of pkgdatadir.
  402. * Support environmental variables. You can export variables by the
  403. command "export".
  404. * Remove the commands "default" and "timeout". They are now variables.
  405. * Add the commands "source" and "." to include a file.
  406. * Implement experimental Video API and a new terminal "gfxterm" based
  407. on the Video API.
  408. New in 1.93 - 2006-03-10:
  409. * Add support for the HFS+ wrapper.
  410. * Major improvements to scripting support.
  411. * Menu entries are now scriptable.
  412. New in 1.92 - 2005-12-25:
  413. * Add support for GPT partition table format.
  414. * Add a new command "play" to play an audio file on PC.
  415. * Add support for Linux/ADFS partition table format.
  416. * Add support for BASH-like scripting.
  417. * Add support for Apple HFS+ filesystems.
  418. New in 1.91 - 2005-10-15:
  419. * Add support for LZO version 2.
  420. * Support completion in the entry editor.
  421. * Add VBE support.
  422. * New commands, "search", "vbetest" and "vbeinfo".
  423. * The option BOOT_IMAGE is passed to Linux.
  424. * Add support for automatic decompression for gzip.
  425. * Add support for terminfo and serial.
  426. * Add support for x86_64.
  427. * GRUB itself is a Multiboot-compliant kernel.
  428. * Add new filesystems: XFS, SFS, and AFFS.
  429. New in 1.90 - 2005-08-07:
  430. * Rename the project name PUPA to GRUB. Now this version is the
  431. developmental version of GRUB officially.
  432. * The GRUB emulator ``grub-emu'' is added.
  433. * Add support for newworld Mac. This should work with other
  434. PowerPC-based machines as well, if they use IEEE 1275
  435. (Open Firmware).
  436. * Too many changes to describe. Look at ChangeLog for more details.
  437. New in 0.7:
  438. * Problems in cross-compiling PUPA are fixed.
  439. * Use -mrtd and -mregparm=3 to reduce the generated code sizes. This
  440. means that any missing prototypes could be fatal. Also, you must take
  441. care when writing assembly code. See the comments at the beginning of
  442. startup.S, for more details.
  443. * New utility, ``pupa-setup''. This sets up PUPA to make it bootable
  444. from a real disk.
  445. * New commands, "prefix", "insmod", "rmmod" and "lsmod" are added into
  446. the rescue mode to manipulate PUPA modules.
  447. * Linux support is added. Initrd is not support yet.
  448. * Reduce the size of a core image significantly by compressing a large
  449. part of the core image and decompressing itself at boot time. The
  450. currently used algorithm is LZO (more precisely, LZO1X-999). So you
  451. have to install LZO to build PUPA. See
  452. <http://www.oberhumer.com/opensource/lzo/>, for more information.
  453. New in 0.6 - 2002-12-27, Yoshinori K. Okuji:
  454. * The chainloader and the FAT filesystem are modularized.
  455. * The structure of the source tree is a bit changed.
  456. * Support for building loadable modules is added.
  457. * Some generic parts of pupa-mkimage are segregated.
  458. * Some documentation files are added, according to the GNU Coding
  459. Standards.