aboutsummaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorsrs5694 <srs5694@users.sourceforge.net>2011-10-01 18:40:10 -0400
committersrs5694 <srs5694@users.sourceforge.net>2011-10-01 18:40:10 -0400
commit23d8d54cdffa9bab0395dab92faa1990410bbb9a (patch)
tree47ec1eb8736b57e8ceb313702f3a962efbf4684d /NEWS
parentd1b11e8305621d73ff675af940e7f1f28b639b0d (diff)
downloadgptfdisk-23d8d54cdffa9bab0395dab92faa1990410bbb9a.tar.gz
Changes for GPT fdisk version 0.8.1
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS27
1 files changed, 20 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 40953f8..7e62f33 100644
--- a/NEWS
+++ b/NEWS
@@ -1,16 +1,29 @@
-0.8.1 (?/??/2011):
+0.8.1 (10/1/2011):
------------------
+- Fixed bug that could cause FixParts to keep a partition's assignment
+ as logical when FixPart could not actually do so. This could happen
+ when there are no gaps between two logical partitions. Some partitioning
+ tools can create such configurations, but FixParts can't. Such
+ configurations are extremely rare. I've only encountered them when
+ logical partitions are out of order.
+
+- Added code to detect infinite loops of logical partitions when reading
+ MBR data. When detected, the program now stops reading after the first
+ loop, so no duplicates appear in the partition list.
+
+- Fixed bug in partition overlap detection in MBR code.
+
- Changed GPT reading code to use the size encoded in GPT headers to
determine how much of the header to use in computing a CRC, with the
restriction that the size be equal to or less than the disk's sector
size. This should work around problems with libefi in ZFS, which sets the
- header size to 512 rather than the standard 92. A caveat: If the disk's
- sector size is larger than the GPTHeader data structure size (512 bytes),
- then the rest of the sector's contents are ignored and replaced with 0
- values. This could produce false positives on CRC checks on disks with
- over-512-byte sector sizes if the header sector is padded with something
- other than 0 values.
+ header size to 512 rather than the more common 92. A caveat: If the
+ disk's sector size is larger than the GPTHeader data structure size (512
+ bytes), then the rest of the sector's contents are ignored and replaced
+ with 0 values. This could produce false positives on CRC checks on disks
+ with over-512-byte sector sizes if the header sector is padded with
+ something other than 0 values.
- Fixed bug in new (as of 0.8.0) check that main and backup partition
tables are identical on big-endian (PowerPC, etc.) hardware.