summaryrefslogtreecommitdiffstats
path: root/advertising/IM_05AMAROK.png
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-09-14 16:17:50 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-09-14 16:17:50 +0000
commita914c46ed754aed58dfdbc634c85f78774package diskdrake::removable; # $Id$ use diagnostics; use strict; use diskdrake::interactive; use common; use fsedit; use fs; sub main { my ($in, $all_hds, $raw_hd) = @_; my %actions = my @actions = actions(); my $action; while ($action ne 'Done') { $action = $in->ask_from_list_('', diskdrake::interactive::format_raw_hd_info($raw_hd), [ map { $_->[0
- drop *.pl files, not used by drakx-installer-stage2 anymore
Diffstat (limited to 'advertising/IM_05AMAROK.png')
-rw-r--r--advertising/IM_05AMAROK.pngbin189489 -> 0 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/advertising/IM_05AMAROK.png b/advertising/IM_05AMAROK.png
deleted file mode 100644
index 058c636d4..000000000
--- a/advertising/IM_05AMAROK.png
+++ /dev/null
Binary files differ
/span> ); } sub done { my ($in, $_raw_hd, $all_hds) = @_; diskdrake::interactive::Done($in, $all_hds); } sub options { my ($in, $raw_hd, $all_hds) = @_; diskdrake::interactive::Options($in, {}, $raw_hd, $all_hds); } sub mount_point { my ($in, $raw_hd, $all_hds) = @_; diskdrake::interactive::Mount_point_raw_hd($in, $raw_hd, $all_hds, "/mnt/$raw_hd->{device}"); } sub type { my ($in, $raw_hd) = @_; my @fs = ('auto', fs::auto_fs()); my $type = $raw_hd->{type}; $in->ask_from(N("Change type"), N("Which filesystem do you want?"), [ { label => N("Type"), val => \$type, list => [@fs], not_edit => !$::expert } ]) or return; $raw_hd->{type} = $type; } 1;