Skip to content

Commit

Permalink
Fallback implicit partition size must be big enough for BTRFS
Browse files Browse the repository at this point in the history
(Current) minimum BTRFS volume size is 256 MiB.

Related: rhbz#1171116
Related: rhbz#1202877
(cherry picked from commit 16eace7)

Conflicts:
	blivet/devices.py
  • Loading branch information
vpodzime committed Jun 3, 2015
1 parent 1da1324 commit 7181468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blivet/devices/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
DEFAULT_PART_SIZE = Size("500MiB")

# in case the default partition size doesn't fit
FALLBACK_DEFAULT_PART_SIZE = Size("10MiB")
FALLBACK_DEFAULT_PART_SIZE = Size("256MiB")

class PartitionDevice(StorageDevice):
""" A disk partition.
Expand Down

0 comments on commit 7181468

Please sign in to comment.