diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-16 20:53:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-16 20:53:32 +0000 |
commit | 2f14ac62602746a52e0ef43271c6d32f1202c8f9 (patch) | |
tree | b9a2f0e92a8982a6f6359877fe830c2f43de7bfa /perl-install | |
parent | 31fb2c2e9d3025bc7dbad038c632ab8a34a9a310 (diff) | |
download | drakx-2f14ac62602746a52e0ef43271c6d32f1202c8f9.tar drakx-2f14ac62602746a52e0ef43271c6d32f1202c8f9.tar.gz drakx-2f14ac62602746a52e0ef43271c6d32f1202c8f9.tar.bz2 drakx-2f14ac62602746a52e0ef43271c6d32f1202c8f9.tar.xz drakx-2f14ac62602746a52e0ef43271c6d32f1202c8f9.zip |
(getAndSaveAutoInstallFloppy): skip it on ia64
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 01178f014..da9f376ee 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -744,6 +744,8 @@ sub getAndSaveAutoInstallFloppy { commands::dd("if=/dev/ram", "of=$where", "bs=1440", "count=1024"); rm_rf($workdir, $mountdir, $imagefile); + } elsif (arch() =~ /ia64/) { + #- nothing yet } else { my $imagefile = "$o->{prefix}/tmp/autoinst.img"; my $mountdir = "$o->{prefix}/tmp/aif-mount"; -d $mountdir or mkdir $mountdir, 0755; |