summaryrefslogtreecommitdiff
path: root/morphlib/fsutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/fsutils.py')
-rw-r--r--morphlib/fsutils.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/morphlib/fsutils.py b/morphlib/fsutils.py
index d4f9f474..1a833599 100644
--- a/morphlib/fsutils.py
+++ b/morphlib/fsutils.py
@@ -53,10 +53,7 @@ def setup_device_mapping(runcmd, image_name):
return line[:i]
def create_fs(runcmd, partition):
- # FIXME: the hardcoded size of 4GB is icky but the default broke
- # when we used mkfs -t ext4
- runcmd(['mkfs.btrfs', '-L', 'baserock',
- '-b', '4294967296', partition])
+ runcmd(['mkfs.btrfs', '-L', 'baserock', partition])
def mount(runcmd, partition, mount_point):
if not os.path.exists(mount_point):