From d7542027aca562d1ab2521eea0b872fb9330fe34 Mon Sep 17 00:00:00 2001 From: Thomas Backlund Date: Thu, 8 Jan 2015 21:12:19 +0159 Subject: btrfs needs atleast 256MB partition --- perl-install/fs/type.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 81673b01f..55592d6f1 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -369,6 +369,7 @@ sub check { my ($fs_type, $_hd, $part) = @_; $fs_type eq "jfs" && $part->{size} < MB(16) and die N("You cannot use JFS for partitions smaller than 16MB"); $fs_type eq "reiserfs" && $part->{size} < MB(32) and die N("You cannot use ReiserFS for partitions smaller than 32MB"); + $fs_type eq "btrfs" && $part->{size} < MB(256) and die N("You cannot use btrfs for partitions smaller than 256MB"); } sub guessed_by_mount() { -- cgit v1.2.1