deae281bfe
Count partitions from 1 instead of 0 in the string representation of partitions. Still use 0-based internally. * partmap/sun.c (grub_sun_is_valid): A cosmetic change. (sun_partition_map_iterate): Use grub_partition_t instead of struct grub_partition *. Cast DESC->START_CYLINDER to grub_uint64_t after converting the endian. (sun_partition_map_probe): Subtract 1 for PARTNUM. (sun_partition_map_get_name): Add 1 to P->INDEX. * partmap/pc.c (grub_partition_parse): Subtract 1 for PCDATA->DOS_PART. (pc_partition_map_get_name): Add 1 into PCDATA->DOS_PART. * partmap/gpt.c (gpt_partition_map_iterate): Initialize PARTNO to zero instead of one. (gpt_partition_map_probe): Subtract 1 for PARTNUM. (gpt_partition_map_get_name): Add 1 into P->INDEX. * partmap/apple.c (apple_partition_map_iterate): Change the type of POS to unsigned. (apple_partition_map_probe): Subtract 1 for PARTNUM. (apple_partition_map_get_name): Add 1 into P->INDEX. * partmap/amiga.c (amiga_partition_map_iterate): Change the type of POS to unsigned. (amiga_partition_map_iterate): Cast NEXT to grub_off_t to calculate the offset of a partition. (amiga_partition_map_probe): Subtract 1 for PARTNUM. (amiga_partition_map_get_name): Add 1 into P->INDEX. * partmap/acorn.c (acorn_partition_map_find): Change the type of SECTOR to grub_disk_addr_t. (acorn_partition_map_iterate): Likewise. (acorn_partition_map_probe): Subtract 1 for PARTNUM. Change the type of SECTOR to grub_disk_addr_t. Declare P on the top. (acorn_partition_map_get_name): Add 1 into P->INDEX. * kern/i386/pc/init.c (make_install_device): Add 1 into GRUB_INSTALL_DOS_PART. * fs/iso9660.c (grub_iso9660_mount): Fixed a reversed conditional.
127 lines
3.3 KiB
Text
127 lines
3.3 KiB
Text
New in 1.95:
|
|
|
|
* Number partitions from 1 instead of 0. For instance, the first
|
|
partition of "hd0" is now "hd0,1" but not "hd0,0".
|
|
|
|
New in 1.94 - 2006-06-04:
|
|
|
|
* Fix several serious bugs in HFS+.
|
|
|
|
* Add experimental EFI support. Chainloading and Linux loading are
|
|
supported at the moment.
|
|
|
|
* Add a new command "blocklist" to show a block list.
|
|
|
|
* Use --with-platform to specify a boot environment. For now, efi,
|
|
ieee1275 and pc are supported.
|
|
|
|
* Use the filename "kernel.elf" instead of "grubof" on ieee1275.
|
|
|
|
* Install GRUB into pkglibdir instead of pkgdatadir.
|
|
|
|
* Support environmental variables. You can export variables by the
|
|
command "export".
|
|
|
|
* Remove the commands "default" and "timeout". They are now variables.
|
|
|
|
* Add the commands "source" and "." to include a file.
|
|
|
|
* Implement experimental Video API and a new terminal "gfxterm" based
|
|
on the Video API.
|
|
|
|
|
|
New in 1.93 - 2006-03-10:
|
|
|
|
* Add support for the HFS+ wrapper.
|
|
|
|
* Major improvements to scripting support.
|
|
|
|
* Menu entries are now scriptable.
|
|
|
|
|
|
New in 1.92 - 2005-12-25:
|
|
|
|
* Add support for GPT partition table format.
|
|
|
|
* Add a new command "play" to play an audio file on PC.
|
|
|
|
* Add support for Linux/ADFS partition table format.
|
|
|
|
* Add support for BASH-like scripting.
|
|
|
|
* Add support for Apple HFS+ filesystems.
|
|
|
|
|
|
New in 1.91 - 2005-10-15:
|
|
|
|
* Add support for LZO version 2.
|
|
|
|
* Support completion in the entry editor.
|
|
|
|
* Add VBE support.
|
|
|
|
* New commands, "search", "vbetest" and "vbeinfo".
|
|
|
|
* The option BOOT_IMAGE is passed to Linux.
|
|
|
|
* Add support for automatic decompression for gzip.
|
|
|
|
* Add support for terminfo and serial.
|
|
|
|
* Add support for x86_64.
|
|
|
|
* GRUB itself is a Multiboot-compliant kernel.
|
|
|
|
* Add new filesystems: XFS, SFS, and AFFS.
|
|
|
|
|
|
New in 1.90 - 2005-08-07:
|
|
|
|
* Rename the project name PUPA to GRUB. Now this version is the
|
|
developmental version of GRUB officially.
|
|
|
|
* The GRUB emulator ``grub-emu'' is added.
|
|
|
|
* Add support for newworld Mac. This should work with other
|
|
PowerPC-based machines as well, if they use IEEE 1275
|
|
(Open Firmware).
|
|
|
|
* Too many changes to describe. Look at ChangeLog for more details.
|
|
|
|
|
|
New in 0.7:
|
|
|
|
* Problems in cross-compiling PUPA are fixed.
|
|
|
|
* Use -mrtd and -mregparm=3 to reduce the generated code sizes. This
|
|
means that any missing prototypes could be fatal. Also, you must take
|
|
care when writing assembly code. See the comments at the beginning of
|
|
startup.S, for more details.
|
|
|
|
* New utility, ``pupa-setup''. This sets up PUPA to make it bootable
|
|
from a real disk.
|
|
|
|
* New commands, "prefix", "insmod", "rmmod" and "lsmod" are added into
|
|
the rescue mode to manipulate PUPA modules.
|
|
|
|
* Linux support is added. Initrd is not support yet.
|
|
|
|
* Reduce the size of a core image significantly by compressing a large
|
|
part of the core image and decompressing itself at boot time. The
|
|
currently used algorithm is LZO (more precisely, LZO1X-999). So you
|
|
have to install LZO to build PUPA. See
|
|
<http://www.oberhumer.com/opensource/lzo/>, for more information.
|
|
|
|
|
|
New in 0.6 - 2002-12-27, Yoshinori K. Okuji:
|
|
|
|
* The chainloader and the FAT filesystem are modularized.
|
|
|
|
* The structure of the source tree is a bit changed.
|
|
|
|
* Support for building loadable modules is added.
|
|
|
|
* Some generic parts of pupa-mkimage are segregated.
|
|
|
|
* Some documentation files are added, according to the GNU Coding
|
|
Standards.
|