diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:54:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:54:49 +0000 |
commit | 4f85b0d92b9246709a53a85b45b15f73c7d97086 (patch) | |
tree | 0f62ec68e69cd1619f59fe77a5b572cd3805e7ec /perl-install/any.pm | |
parent | c9ae469b014987aab6c76225859028ecffb77659 (diff) | |
download | drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.gz drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.bz2 drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.xz drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.zip |
add isFat_or_NTFS() and use it where possible instead of isFat() since Windows
is now using ntfs, not only Windows NT
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index a2146b6bc..60bca91ec 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -255,7 +255,7 @@ sub setupBootloader__general { arch() =~ /sparc/ ? ( { label => N("Bootloader installation"), val => \$b->{use_partition}, list => [ 0, 1 ], format => sub { $silo_install_lang[$_[0]] } }, ) : if_(arch() !~ /ia64/, - { label => N("Boot device"), val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } (@{$all_hds->{hds}}, grep { !isFat($_) } @$fstab)), detect_devices::floppies_dev() ], not_edit => !$::expert }, + { label => N("Boot device"), val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } (@{$all_hds->{hds}}, grep { !isFat_or_NTFS($_) } @$fstab)), detect_devices::floppies_dev() ], not_edit => !$::expert }, { label => N("Compact"), val => \$b->{compact}, type => "bool", text => N("compact"), advanced => 1 }, { label => N("Video mode"), val => \$b->{vga}, list => [ keys %bootloader::vga_modes ], not_edit => !$::expert, format => sub { $bootloader::vga_modes{$_[0]} }, advanced => 1 }, ), |