If the specified format is not cylinders, make the cylinder boundary check only print a warning and proceed anyways. Signed-off-by: Petr Uzel <petr.uzel@xxxxxxx> --- fdisk/sfdisk.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/fdisk/sfdisk.c b/fdisk/sfdisk.c index 2c9de8f..820e23e 100644 --- a/fdisk/sfdisk.c +++ b/fdisk/sfdisk.c @@ -1313,12 +1313,14 @@ partitions_ok(struct disk_desc *z) { && (p->p.start_sect >= B.cylindersize)) { my_warn(_("Warning: partition %s does not start " "at a cylinder boundary\n"), PNO(p)); - return 0; + if (specified_format == F_CYLINDER) + return 0; } if ((p->start + p->size) % B.cylindersize) { my_warn(_("Warning: partition %s does not end " "at a cylinder boundary\n"), PNO(p)); - return 0; + if (specified_format == F_CYLINDER) + return 0; } } } -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html