From b9bb780015a57f1df1080175bce0e501d4825593 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 11 Jul 2016 17:14:10 +0200 Subject: BIOS boot partition cannot be mounted --- perl-install/fs/type.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/fs') diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index ac4b08896..c38e9e497 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -326,7 +326,7 @@ sub isOtherAvailableFS { isESP($_[0]) || isFat_or_NTFS($_[0]) || member($_[0]{fs sub isMountableRW { (isTrueFS($_[0]) || isOtherAvailableFS($_[0])) && $_[0]{fs_type} ne 'ntfs' } sub cannotBeMountable { my ($part) = @_; - isRawRAID($part) || isRawLUKS($part) || isRawLVM($part); + isRawRAID($part) || isRawLUKS($part) || isRawLVM($part) || isBIOS_GRUB($part); } sub isNonMountable { my ($part) = @_; -- cgit v1.2.1