diff options
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 30bf01d78..70627be37 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -375,8 +375,11 @@ sub guessed_by_mount() { grep { $_ && !/nodev/ } chomp_(cat_('/etc/filesystems')); } +sub directories_needed_to_boot_not_ESP() { + qw(/ /usr /var /boot /tmp); +} sub directories_needed_to_boot() { - qw(/ /usr /var /boot /boot/EFI /tmp); + directories_needed_to_boot_not_ESP(), '/boot/EFI'; } sub carry_root_loopback { |