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
  • Loading branch information
vpodzime committed Jan 28, 2015
1 parent 77c5f24 commit 16eace7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blivet/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,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")

def get_device_majors():
majors = {}
Expand Down

0 comments on commit 16eace7

Please sign in to comment.