Make format work with whole disk devices (#743181)
Formatting a whole disk device fails on the set partition type step with libparted error "unrecognised disk label". This is because the previous step just cleared the old file system signatures leaving libparted with nothing to recognise. Therefore libparted doesn't present a virtual "loop" partition table. As there is no partition table, there's no partition and no partition type. Just skip setting the partition type on whole disk devices. Bug 743181 - Add unpartitioned drive read-write support
This commit is contained in:
parent
dc4e69136c
commit
db8d964fba
|
@ -2059,6 +2059,9 @@ bool GParted_Core::format( const Partition & partition, OperationDetail & operat
|
||||||
{
|
{
|
||||||
if ( partition .filesystem == FS_CLEARED )
|
if ( partition .filesystem == FS_CLEARED )
|
||||||
return erase_filesystem_signatures( partition, operationdetail ) ;
|
return erase_filesystem_signatures( partition, operationdetail ) ;
|
||||||
|
else if ( partition.whole_device )
|
||||||
|
return erase_filesystem_signatures( partition, operationdetail )
|
||||||
|
&& create_filesystem( partition, operationdetail );
|
||||||
else
|
else
|
||||||
return erase_filesystem_signatures( partition, operationdetail )
|
return erase_filesystem_signatures( partition, operationdetail )
|
||||||
&& set_partition_type( partition, operationdetail )
|
&& set_partition_type( partition, operationdetail )
|
||||||
|
|
Loading…
Reference in New Issue