diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 14:34:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 14:34:16 +0000 |
commit | 29b91486ff7de14e6f4388ee03bf426a912f76d9 (patch) | |
tree | 974112bd10718488c55b5cd93a22a5b5c66475db /perl-install/diskdrake/interactive.pm | |
parent | 076d81eaaea229d7e0885113e008eb04fdf8591f (diff) | |
download | drakx-29b91486ff7de14e6f4388ee03bf426a912f76d9.tar drakx-29b91486ff7de14e6f4388ee03bf426a912f76d9.tar.gz drakx-29b91486ff7de14e6f4388ee03bf426a912f76d9.tar.bz2 drakx-29b91486ff7de14e6f4388ee03bf426a912f76d9.tar.xz drakx-29b91486ff7de14e6f4388ee03bf426a912f76d9.zip |
drop supermount support (it has been dropped from our kernel)
Diffstat (limited to 'perl-install/diskdrake/interactive.pm')
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 7e08981e0..a98f402b0 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -350,12 +350,6 @@ sub Auto_allocate { sub More { my ($in, $hd) = @_; - my %automounting = ( - 0 => N("No supermount"), - 1 => N("Supermount"), - magicdev => N("Supermount except for CDROM drives"), - ); - my $r; $in->ask_from(N("More"), '', [ @@ -363,11 +357,6 @@ sub More { { val => N("Restore partition table"), clicked_may_quit => sub { ReadFromFile($in, $hd); 1 } }, if_($::isInstall, { val => N("Reload partition table"), clicked_may_quit => sub { $r = 'force_reload'; 1 } }), - if_($::isInstall || 1, - { label => N("Removable media automounting"), val => \$::o->{useSupermount}, - format => sub { $automounting{$_[0]} }, - list => [ 0, 'magicdev', 1 ], advanced => 1 }, - ), ], ) && $r; } @@ -961,7 +950,7 @@ sub Loopback { sub Options { my ($in, $hd, $part, $all_hds) = @_; - my @simple_options = qw(users noauto supermount username= password=); + my @simple_options = qw(users noauto username= password=); my (undef, $user_implies) = fs::mount_options::list(); my ($options, $unknown) = fs::mount_options::unpack($part); |