diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/any.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b24c95468..79cb527d9 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - recognize new kernel-4.7 drivers +- try to get patch from ext[2-4] removable media instead of just ext2 Version 17.48 - 4 July 2016 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 7cce71479..01896b570 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -1083,7 +1083,7 @@ sub loadO { my $o; foreach (removable_media__early_in_install()) { my $dev = devices::make($_->{device}); - foreach my $fs (qw(ext2 vfat ntfs-3g)) { + foreach my $fs (qw(ext4 vfat ntfs-3g)) { eval { fs::mount::mount($dev, '/mnt', $fs, 'readonly'); 1 } or next; if (my $abs_f = find { -e $_ } "/mnt/$f", "/mnt/$f.pl") { $o = loadO_($O, $abs_f); |