diff options
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 33dc8229b..2eb7c4bf9 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -204,6 +204,8 @@ sub mount($$$;$) { #- without knowing it, / is forced to be mounted with notail $mount_opt = 'notail' if $where =~ m|/(boot)?$|; eval { modules::load('reiserfs') }; + } elsif ($fs eq 'romfs') { + eval { modules::load('romfs') }; } $where =~ s|/$||; |