Re: [PATCH parted 1/6] parted.texi: Document --align option

2009-12-10 Thread Jim Meyering
Hans de Goede wrote: > doc/parted.texi: Document --align option. Thanks for all of these! I've just confirmed that they pass all tests and pushed them. ___ bug-parted mailing list bug-parted@gnu.org http://lists.gnu.org/mailman/listinfo/bug-parted

Re: [PATCH parted 2/5] parted: add --align commandline option to specify mkpart alignment

2009-12-10 Thread Jim Meyering
Hans de Goede wrote: > The new --align commandline option can have the following values: > none: Use the minimum alignment allowed by the disk type > cyl: Align partitions to cylinders (the default) > min: Use minimum alignment as given by the disk topology information > opt: Use optimum ali

[PATCH parted 3/3] parted.texi: Document --align option

2009-12-10 Thread Hans de Goede
doc/parted.texi: Document --align option. --- doc/parted.texi |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/doc/parted.texi b/doc/parted.texi index a1d794d..5704520 100644 --- a/doc/parted.texi +++ b/doc/parted.texi @@ -496,6 +496,11 @@ display a help message @itemx

[PATCH parted 2/3] parted.8: add --align option to manpage

2009-12-10 Thread Hans de Goede
* doc/C/parted.8: add --align option to manpage. --- doc/C/parted.8 | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/doc/C/parted.8 b/doc/C/parted.8 index 9909ba8..2a8992e 100644 --- a/doc/C/parted.8 +++ b/doc/C/parted.8 @@ -30,6 +30,26 @@ never prompts

[PATCH parted 1/3] NEWS: Add new --align option to NEWS

2009-12-10 Thread Hans de Goede
* NEWS: Add new --align option. --- NEWS | 15 +++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/NEWS b/NEWS index 500e060..cd67678 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,21 @@ GNU parted NEWS-*- outline -*- ** New features

Re: [PATCH parted 2/5] parted: add --align commandline option to specify mkpart alignment

2009-12-10 Thread Jim Meyering
Hans de Goede wrote: > The new --align commandline option can have the following values: > none: Use the minimum alignment allowed by the disk type > cyl: Align partitions to cylinders (the default) > min: Use minimum alignment as given by the disk topology information > opt: Use optimum ali

[PATCH parted 6/6] libparted: Missing pop update mode in ped_disk_delete_all error path

2009-12-10 Thread Hans de Goede
* libparted/disk.c(ped_disk_delete_all): Add missing update mode pop call in error path. --- libparted/disk.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c index 476ece8..5ca5b74 100644 --- a/libparted/disk.c +++ b/libparted/disk.c

[PATCH parted 3/6] libparted: Add missing update mode pop in duplicate error path

2009-12-10 Thread Hans de Goede
From: Joel Granados Moreno * libparted/disk.c(ped_disk_duplicate): Add missing update mode pop call in error path. --- libparted/disk.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c index 7660ee9..d14fe41 100644 --- a/libparted/di

[PATCH parted 4/6] Makefiles: Don't install s390 dasd internal headers in /usr/include

2009-12-10 Thread Hans de Goede
From: Joel Granados Moreno include/parted/Makefile.am: Don't install s390 dasd internal headers in /usr/include. --- include/parted/Makefile.am |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/parted/Makefile.am b/include/parted/Makefile.am index a1ba960..022

[PATCH parted 5/6] libparted: make pop/push update mode propagate sanity check errors

2009-12-10 Thread Hans de Goede
Sanity check errors indicate something is really really wrong, still sometimes they happen, when they happen it helps a lot in debugging them when the libparted caller immediately errors out at the first moment, rather then slugging along until things crash somewere. * libparted/disk.c(_disk_push_u

[PATCH parted 2/6] gpt: Add support for appletv partitions

2009-12-10 Thread Hans de Goede
From: Joel Granados Moreno * include/parted/disk.h(PedPartitionFlag): Add PED_PARTITION_APPLE_TV_RECOVERY. * libparted/disk.c(ped_partition_flag_get_name): Handle PED_PARTITION_APPLE_TV_RECOVERY. * libparted/labels/gpt.c(PARTITION_APPLE_TV_RECOVERY_GUID): New define. * libparted/labels/gpt.c(GPTP

[PATCH parted 1/6] parted.texi: Document --align option

2009-12-10 Thread Hans de Goede
doc/parted.texi: Document --align option. --- doc/parted.texi |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/doc/parted.texi b/doc/parted.texi index a1d794d..a4090df 100644 --- a/doc/parted.texi +++ b/doc/parted.texi @@ -496,6 +496,11 @@ display a help message @itemx

[PATCH parted 5/5] parted.8: add --align option to manpage

2009-12-10 Thread Hans de Goede
--- doc/C/parted.8 | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/doc/C/parted.8 b/doc/C/parted.8 index 9909ba8..31c33ec 100644 --- a/doc/C/parted.8 +++ b/doc/C/parted.8 @@ -30,6 +30,26 @@ never prompts for user intervention .TP .B -v, --version dis

[PATCH parted 3/5] NEWS: Add new --align option to NEWS

2009-12-10 Thread Hans de Goede
* NEWS: Add new --align option. --- NEWS | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/NEWS b/NEWS index c0b29cc..bf1044d 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,22 @@ GNU parted NEWS-*- outline -*- ** New features

[PATCH parted 4/5] NEWS: update with libblkid and kernel requirements for alignment funcs

2009-12-10 Thread Hans de Goede
* NEWS: Change the note for the align-check command to also reference libblkid, add a note to the libparted alignment functions NEWS entry about libblkid and kernel requirements. --- NEWS |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index bf1044d..5b01e9c

[PATCH parted 1/5] NEWS: Add new disk flag functions to NEWS

2009-12-10 Thread Hans de Goede
* NEWS: Add new disk flag functions. --- NEWS | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/NEWS b/NEWS index 9a0ac2c..c0b29cc 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,18 @@ GNU parted NEWS-*- outline -*- ** New features

[PATCH parted 2/5] parted: add --align commandline option to specify mkpart alignment

2009-12-10 Thread Hans de Goede
The new --align commandline option can have the following values: none: Use the minimum alignment allowed by the disk type cyl: Align partitions to cylinders (the default) min: Use minimum alignment as given by the disk topology information opt: Use optimum alignment as given by the disk top