OSDN Git Service

dos: add a partition flag for diagnostics / recovery partitions
[android-x86/external-parted.git] / NEWS
1 GNU parted NEWS                                    -*- outline -*-
2
3 * Noteworthy changes in release ?.? (????-??-??) [?]
4
5 ** New features
6
7   parted now recognizes ATA over Ethernet (AoE) devices
8
9   parted now recognizes Linux Software RAID Arrays
10
11   libparted has a new partition flag to check for msdos disklabel diagnostics
12   partitions: PED_PARTITION_DIAG
13
14 ** Bug fixes
15
16   When libparted deferenced a /dev/mapper/foo symlink, it would keep the
17   resulting /dev/dm-N name and sometimes use it later, even though it
18   had since become stale and invalid.  It no longer stores the result
19   of dereferencing a /dev/mapper symlink.
20
21   libparted's msdos_partition_is_flag_available function now always reports
22   that the "hidden" flag is not available for an extended partition.
23   Similarly, msdos_partition_get_flag(p,PED_PARTITION_HIDDEN) always returns 0
24   for an extended partition.
25
26   libparted uses a more accurate heuristic to distinguish between
27   ext4 and ext3 partitions.
28
29   libparted now properly checks the return value of dm_task_run when
30   operating on devicemapper devices.
31
32 ** Changes in behavior
33
34   libparted no longer issues an exception/warning about >512-byte
35   sector support being "HIGHLY EXPERIMENTAL".  It seems to have matured
36   enough to be usable at least with GPT and MSDOS partition tables.
37
38
39 * Noteworthy changes in release 2.2 (2010-02-26) [stable]
40
41 ** Changes in behavior
42
43   The default alignment (--align option) for newly created partitions has
44   been changed to optimal.
45
46 ** New features
47
48   The ped_device_get_*_alignment() functions now return a sane default
49   value instead of NULL when the so called topology information is incomplete.
50   The default minimum alignment aligns to physical sector size, the default
51   optimal alignment is 1MiB, which is what vista and windows 7 do.
52
53 ** Bug fixes
54
55   Parted no longer uses a physical sector size of 0 or of any other
56   value smaller than the logical sector size.
57
58   dos: creating an HFS or HFS+ partition in an msdos partition table
59   used to set the partition type to 0x83.  That is wrong.  The required
60   number is 0xaf, and that is what is used now.
61
62   gpt: read-only operation could clobber MBR part of hybrid GPT+MBR table
63   [bug introduced in parted-2.1]
64
65   gpt: a read-only operation like "parted $dev print" would overwrite $dev's
66   protective MBR when exactly one of the primary and backup GPT tables was
67   found to be corrupt.
68   [bug introduced prior to parted-1.8.0]
69
70   sun: the version, sanity and nparts VTOC fields were ignored by libparted.
71   Those fields are properly initialized now. The nparts (number of partitions)
72   field is initialized to 8 (max. number of sun partitions) rather that to a
73   real number of partitions. This solution is compatible with Linux kernel
74   and Linux fdisk.
75
76   "make install" no longer installs tests programs named disk and label
77
78   libparted: try harder to inform kernel of partition changes.
79   Previously when editing partitions, occasionally the kernel would
80   fail to be informed of partition changes.  When this happened future
81   problems would occur because the kernel had incorrect information.
82   For example, if this problem arose when resizing or creating a
83   new partition, then an incorrect partition size might be displayed
84   or a user might encounter a failure to format or delete a newly
85   created partition, respectively.
86
87   libparted: committing a disk that was returned by ped_disk_duplicate
88   would always result in ped_disk_clobber being called (and thus the first
89   and last 9KiB of the disk being zeroed), even if the duplicated disk,
90   was not returned by ped_disk_fresh().
91
92
93 * Noteworthy changes in release 2.1 (2009-12-20) [stable]
94
95 ** New features
96
97   new --align=<align> commandline option which can have the following values:
98   none:     Use the minimum alignment allowed by the disk type
99   cylinder: Align partitions to cylinders (the default)
100   minimal:  Use minimum alignment as given by the disk topology information
101   optimal:  Use optimum alignment as given by the disk topology information
102   The minimal and optimal  values will use layout information provided by the
103   disk to align the logical partition table addresses to actual physical
104   blocks on the disks. The mininal value uses the minimum aligment needed to
105   align the partition properly to physical blocks, which avoids performance
106   degradation. Where as the optimal value uses a multiple of the physical
107   block size in a way that guarantees optimal performance.
108   The min and opt values will only work when compiled with
109   libblkid >= 2.17 and running on a kernel >= 2.6.31, otherwise they will
110   behave as the none --align value.
111
112   libparted: new functions to set per disk (instead of per partition) flags:
113   ped_disk_set_flag()
114   ped_disk_get_flag()
115   ped_disk_is_flag_available()
116   ped_disk_flag_get_name()
117   ped_disk_flag_get_by_name()
118   ped_disk_flag_next()
119
120   libparted: new per disk flag: PED_DISK_CYLINDER_ALIGNMENT. This flag
121   (which defaults to true) controls if disk types for which cylinder alignment
122   is optional do cylinder alignment when a new partition gets added.
123
124   libparted: new functions to return per-partition-table-type limits:
125     - ped_disk_max_partition_start_sector: Return the largest representable
126     start sector number for a given "disk".
127     - ped_disk_max_partition_length: Return the maximum partition length
128     for a given "disk".
129
130   new command "align-check TYPE N" to determine whether the starting sector
131   of partition N is TYPE(minimal|optimal)-aligned for the disk.  E.g.,
132       parted -s /dev/sda align-check min 1 && echo partition 1 is min-aligned
133       parted -s /dev/sda align-check opt 2 && echo partition 2 is opt-aligned
134   The same libblkid and kernel version requirements apply as for --align
135
136   Add functions to libparted to get minimal and optimal alignment
137   information from devices:
138   ped_device_get_minimal_aligned_constraint()
139   ped_device_get_optimal_aligned_constraint()
140   ped_device_get_minimum_alignment()
141   ped_device_get_optimum_alignment()
142   The same libblkid and kernel version requirements apply as for --align
143
144   Add ped_disk_get_partition_alignment() function to libparted to get
145   information about alignment enforced by the disk type.
146
147 ** Bug fixes
148
149   parted can once again create partition tables on loop devices.
150   Before, "parted -s /dev/loop0 mklabel gpt" would fail.
151   [bug introduced in parted-1.9.0]
152
153   improved >512-byte sector support: for example, printing a table on a
154   4k-sector disk would show "Sector size (logical/physical): 4096B/512B",
155   when the sizes should have been "4096B/4096B".
156
157   gpt tables are more rigorously checked; before, partition entry array CRCs
158   were not checked, and we would mistakenly use the AlternateLBA member of a
159   known-corrupt primary table.
160
161   improved dasd disk support, in previous versions calling
162   ped_disk_new_fresh() or ped_disk_duplicate() on a dasd type PedDisk
163   would fail.  This is fixed now.
164
165   handle device nodes created by lvm build with udev synchronisation enabled
166   properly.
167
168   when printing tables, parted no longer truncates flag names
169
170
171 * Noteworthy changes in release 2.0 (2009-10-06) [beta]
172
173 ** Improvements
174
175   Parted now supports disks with sector size larger than 512 bytes.
176   Before this release, Parted could operate only on disks with a sector
177   size of 512 bytes.  However, disk manufacturers are already making disks
178   with an exposed hardware sector size of 4096 bytes.  Prior versions of
179   Parted cannot even read a partition table on such a device, not to
180   mention create or manipulate existing partition tables.
181   Due to internal design and time constraints, the following
182   less-common partition table types are currently disabled:
183     amiga, bsd, aix, pc98
184   "bsd" and "amiga" are mostly done, but had a few minor problems,
185   so may remain disabled until someone requests that they be revived.
186
187 ** Bug fixes
188
189   big-endian systems can once again read GPT partition tables
190   [bug introduced in parted-1.9.0]
191
192   ped_partition_is_busy no longer calls libparted's exception handler,
193   since doing so caused trouble with anaconda/pyparted when operating on
194   dmraid devices.
195
196   Partitions in a GPT table are no longer assigned the "microsoft
197   reserved partition" type.  Before this change, each partition would
198   be listed with a type of "msftres" by default.
199
200
201 * Noteworthy changes in release 1.9.0 (2009-07-23) [stable]
202
203 ** Bug fixes
204
205   parted now preserves the protective MBR (PMBR) in GPT type labels.
206   http://lists.alioth.debian.org/pipermail/parted-devel/2008-December/\
207     002473.html
208   http://lists.gnu.org/archive/html/bug-parted/2008-12/msg00015.html
209
210   gpt_read now uses SizeOfPartitionEntry instead of the size of
211   GuidPartitionEntry_t.  This ensures that *all* of the partition
212   entries are correctly read.
213   http://lists.alioth.debian.org/pipermail/parted-devel/2008-December/\
214     002465.html
215   http://lists.alioth.debian.org/pipermail/parted-devel/attachments/\
216     20081202/b7c0528d/attachment.txt
217
218   mklabel (interactive mode) now correctly asks for confirmation, when
219   replacing an existent label, without outputting an error message.
220   http://lists.alioth.debian.org/pipermail/parted-devel/2009-January/\
221     002739.html
222
223   resize now handles FAT16 file systems with a 64k cluster.  This
224   configuration is not common, but it is possible.
225   http://parted.alioth.debian.org/cgi-bin/trac.cgi/ticket/207
226
227   parted now ignores devices of the type /dev/md* when probing.  These
228   types of devices should be handled by the device-mapper capabilities
229   of parted.
230   http://lists.alioth.debian.org/pipermail/parted-devel/2009-April/\
231     002781.html
232
233   The parted documentation now describes the differences in the options
234   passed to mkpart for the label types.
235   http://lists.alioth.debian.org/pipermail/parted-devel/2009-April/\
236     002782.html
237
238 ** Changes in behavior
239
240   include/parted/beos.h, include/parted/gnu.h and include/parted/linux.h
241   have been removed.  The symbols contained in these files (GNUSpecific,
242   ped_device_new_from_store, BEOSSpecific, LinuxSpecific,  LINUX_SPECIFIC)
243   were moved to the individual files that need them.
244
245   In libparted, the linux-swap "filesystem" types are now called
246   "linux-swap(v0)" and "linux-swap(v1)" rather than "linux-swap(old)"
247   and "linux-swap(new)" as in parted 1.8, or "linux-swap" as in older
248   versions; "old" and "new" generally make poor names, and v1 is the
249   only format supported by current Linux kernels. Aliases for all
250   previous names are available.
251
252 * Noteworthy changes in release 1.8.8.1 (2007-12-17) [stable]
253
254 ** FIXME: fill in details
255
256 * Noteworthy changes in release 1.8.8 (2007-08-09) [stable]
257
258 ** GNU parted is now licensed under the GNU General Public License version 3
259    or higher.  See the COPYING file for more details.
260
261 ** libparted:
262   - Add compute_block_counts() to improve ext2fs support.
263   - Properly detect 'ext2 fs too small' cases.
264   - Move formatting commands out of translatable strings.
265   - Read an msdos partition table from a device with 2K sectors.
266   - Remove always-false "Unable to open" diagnostic in ped_disk_new(),
267     leave the "unrecognized disk label" diagnostic.
268   - Don't leak partition table buffer in amiga_read().
269   - Don't read/write initialized memory with DEBUG turned on off for
270     'mklabel bsd' and 'mklabel amiga' command calls.
271   - Turn off DEBUG in libparted.c to avoid initializing all allocated
272     memory to '1' bits.
273   - Correct handling of HeaderSize field in GPT labels.
274   - Fix block number used when checking for ext2 fs state.
275   - Add detection support for Xen virtual block devices (/dev/xvd*).
276   - When reading DASD labels, check the filesystem type as well as
277     partition flags to determine what's on the partition.
278   - Add _dm_probe_all() from Debian to probe for all device-mapper
279     devices.
280
281 ** parted:
282   - Fixed exception handling in mkpart and mkpartfs commands.
283   - Add the --dry-run option to the partprobe command.
284   - Update docs: cannot specify 'primary' for a partition on a loop
285     device.
286   - Remove unused functions (get_spaces).
287   - Fix off-by-one error in str_list_print_wrap().
288   - Use xmalloc() and xrealloc() to check return values.
289   - Fix invalid command line argument handling.
290   - Close memory leaks in parted.c and table.c.
291   - Fix warnings when compiling with translation support enabled.
292   - Use a consistent prompt when asking for a file system type.
293   - Update docs: don't reference old versions of gzip.
294
295 ** misc:
296   - Improve the testing framework in the tests/ subdirectory.  Build out
297     more of the testing scripts so we can start using that to ensure we
298     don't introduce regressions in releases.
299   - Support testing with tmpfs filesystems on Linux.
300   - Work around inadequate libreadline in the configure script.
301   - Don't include config.h from internal headers.
302
303 * Noteworthy changes in release 1.8.7 (2007-05-09) [stable]
304
305 ** libparted:
306   - Prevent compilation of DASD code on GNU Hurd systems.
307   - Integrate new unit testing framework for parted and libparted.
308   - Fix primary partition cylinder alignment error for DOS disk labels.
309   - Use PED_PARTITION_NORMAL in place of PED_PARTITION_PRIMARY.
310   - Avoid segfault due to a double free on reiserfs support.
311
312 ** parted:
313   - Fix script mode (-s) for mkfs command in parted.
314   - Suppress "you are not superuser..." warning in script mode.
315   - Fix off-by-one bug in parted when displaying information about the
316     disk.
317   - Do not translate partition names in the 'parted print' command.
318     This causes problems for non-Latin-based character sets.
319   - Send errors to stderr rather than stdout.
320   - Handle command line options independent of the order.
321   - Abort on any invalid option and handle -v and -h first.
322   - Only display the update /etc/fstab message when there has been a
323     change to the disk (a shorter and more direct message too).
324
325 * Noteworthy changes in release 1.8.6 (2007-03-20) [stable]
326
327 ** Revert the implementation of the linux-swap(new) and linux-swap(old) types.
328    The type is 'linux-swap' for v1, v2, and s1suspend swap partitions on Linux.
329
330 * Noteworthy changes in release 1.8.5 (2007-03-20) [stable]
331
332 ** Another minor update.  Both versions 1.8.3 and 1.8.4 lacked po translation
333    files.  These are included with version 1.8.5.
334
335 * Noteworthy changes in release 1.8.4 (2007-03-19) [stable]
336
337 ** Minor bug fix release for 1.8.3 to fix build issues on various
338    platforms:
339   - Use 'uname -m' to determine if we build on System Z or not.
340   - Include <parted/vtoc.h> in <parted/fdasd.h> for format1_label_t
341     definition.
342   - Remove unused variables in libparted/arch/linux.c (-Werror).
343   - Check return values on fgets() and asprint() in libparted/arch/linux.c
344     (-Werror).
345   - Check for tgetent() in libtinfo in the configure script.
346   - Move some macro definitions in <parted/disk.h> to fix a compile
347     problem with gcc-4.1.2 as indicated here:
348     http://lists.gnu.org/archive/html/bug-parted/2007-03/msg00008.html
349
350 * Noteworthy changes in release 1.8.3 (2007-03-16) [stable]
351
352 ** libparted:
353   - Header file clean ups.
354   - Sync the linux-swap header according to the Linux kernel sources.
355   - Enable support for swsusp partitions and the ability to differentiate
356     between old and new versions of linux-swap partitions.
357   - Renaming PARTITION_EXT to PARTITION_DOS_EXT in the DOS disklabel
358     code (consitency with Linux kernel source).
359   - Added libparted.pc pkg-config file.
360   - Remove unused functions, ifdefs, and other code.
361   - Deprecate ped_[register|unregister]_disk_type in favor of
362     ped_disk_type_[register|unregister].
363   - Small test program fixes (in label.c and common.c).
364   - Make functions const-correct.
365   - Handle systems where libreadline is not available.
366   - Preserve starting sector for primary NTFS 3.1 partitions on DOS
367     disklabel.
368   - Handle 2048-byte logical sectors in linux_read().
369   - Use PED_SECTOR_SIZE_DEFAULT macro in place of 512.
370   - Don't assume logical sector size is <= 512B on AIX.
371   - Detect HFS write failure.
372   - Use mkstemp() in place of mktemp().
373   - Added HFS+ resize support.
374   - Don't build DASD support on non-zSeries hardware.
375
376 ** parted/partprobe:
377   - Use fputs() and putchar() in place for printf(), when possible.
378   - Detect/report stdout write errors.
379   - Accept the --version and --help options.
380   - Fix memory leaks in parted(8).
381
382 ** general:
383   - Synchronize the manual page and --help documentation.
384   - GNU autoconf and automake updates.
385   - 'gcc -Wall -Wshadow' warning cleanups.
386   - Don't define _GNU_SOURCE manually.
387   - Documentation updates and cleanups (AUTHORS, copyright notices,
388     etc).
389   - Use gnulib (http://www.gnu.org/software/gnulib/).
390
391 * Noteworthy changes in release 1.8.2 (2007-01-12) [stable]
392
393 ** libparted:
394   - Add the ped_device_cache_remove() function to remove a device from
395     the cache.  This is necessary for some things that use libparted,
396     including pyparted.
397   - Fix a segfault in ped_assert() where the wrong pointer is freed in
398     the backtrace handler.
399   - Only call _disk_warn_loss(disk) in do_mklabel() if disk is not NULL.
400     Fixes a segfault when initializing new volumes.
401   - Dynamically allocate space for exception messages.
402   - Output a backtrace when catching SEGV_MAPPER or a general SIGSEGV.
403
404 ** parted:
405   - Destroy all objects before return when called with --list or --all
406     option.
407   - Zero sized device is shown as 0.00B and not -0.00kB.
408   - Implement 'print devices' command.
409   - Alias 'print list' to 'print all'.
410   - Alias 'mktable' to 'mklabel'.
411
412 ** misc:
413   - Other bug fixes, documentation updates, and translation improvements.
414   - Code and API clean-ups.
415
416 * Noteworthy changes in release 1.8.1 (2006-12-04) [stable]
417
418 ** libparted:
419   - Rework backtrace support.
420   - Code cleanups.
421   - Added --enable-selinux configure option to enable linking libparted with
422     libselinux and libsepol.
423   - Disable ext2fs resize for now, tell user to use resize2fs.
424
425 ** parted:
426   - Fix loop in print_all().
427   - Introduce the -list command-line switch.
428   - Make mktable aliased to mklabel.
429   - Warn before mklabel and mkfs.
430   - Code cleanups in _partition_warn_busy(), _disk_warn_busy(),
431     _partition_warn_loss(), and _disk_warn_loss().
432   - Avoid warning about user permissions when using --version.
433   - Fix 'print' command help.
434   - Proper print when there are no extended partitions, but partition names.
435
436 ** misc:
437   - Generate SHA-1 digest of the archive files and upload those along with the
438     actual archive files.
439   - Update translation files.
440   - Remove automatically generated files from version control.
441
442 * Noteworthy changes in release 1.8.0 (2006-11-17) [stable]
443
444 ** libparted:
445   - GPT fixes:
446        - Correctly handle disks with non-512 byte sector sizes
447        - Support LUN resizing (see new space, allow parted to use it)
448        - Prevent overlap of LastUsableLBA and PartitionEntryLBA in backup GPT
449   - Prevent SIGFPE when FAT sector size is 0
450   - Add ped_exception_get_handler()
451   - DASD support for IBM zSeries systems
452   - AIX disk label support
453   - Detect Promise SX8 storage devices
454   - Macintosh (ppc and x86) disk label improvements:
455        - Prevent LVM and RAID partition types from corrupting the table
456        - Fix removal of driver partition
457   - Add support binary units (MiB, KiB, GiB)
458   - In ped_register_disk_type(), handle disk_types==NULL case
459   - In ped_unregister_disk_type(), handle case where type is not registered
460   - Fix geometry read problems on 64-bit Macs (and probably other 64-bit systems)
461   - Add support for /dev/mapper devices via libdevmapper library
462   - Detect Apple_Boot partition types correctly on MacOS X 10.4 systems
463
464 ** parted:
465   - Various bug fixes, signal handling fixes, and spelling error fixes
466   - UI improvements to display more information about the disk and transport
467     layer
468
469 ========================================================================
470
471 Copyright (C) 2001-2010 Free Software Foundation, Inc.
472
473 Permission is granted to copy, distribute and/or modify this document
474 under the terms of the GNU Free Documentation License, Version 1.3 or
475 any later version published by the Free Software Foundation; with no
476 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
477 Texts.  A copy of the license is included in the ``GNU Free
478 Documentation License'' file as part of this distribution.