diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-04-15 14:38:46 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2003-04-15 14:38:46 +0000 |
commit | 441a9c895569ed485fabf24c6fc3c7d3aff4df77 (patch) | |
tree | d697344e88e114f4d88fff6af363707417b10f20 | |
parent | b1b5a86a6ca0f02e9daa41bd977067d330f60c97 (diff) | |
download | drakx-backup-do-not-use-441a9c895569ed485fabf24c6fc3c7d3aff4df77.tar drakx-backup-do-not-use-441a9c895569ed485fabf24c6fc3c7d3aff4df77.tar.gz drakx-backup-do-not-use-441a9c895569ed485fabf24c6fc3c7d3aff4df77.tar.bz2 drakx-backup-do-not-use-441a9c895569ed485fabf24c6fc3c7d3aff4df77.tar.xz drakx-backup-do-not-use-441a9c895569ed485fabf24c6fc3c7d3aff4df77.zip |
CD-ROM installations use cdrom.img on x86-64 nowadays
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index c3b058a9f..8d838a790 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -776,7 +776,7 @@ sub getAndSaveInstallFloppy { cp_af("$postinstall_rpms/auto_install.img", $where); } else { my $image = cat_("/proc/cmdline") =~ /pcmcia/ ? "pcmcia" : - arch() =~ /ia64|x86_64|ppc/ ? "all" : #- we only use all.img there + arch() =~ /ia64|ppc/ ? "all" : #- we only use all.img there ${{ disk => 'hd', cdrom => 'cdrom', ftp => 'network', nfs => 'network', http => 'network' }}{$o->{method}}; $image .= arch() =~ /sparc64/ && "64"; #- for sparc64 there are a specific set of image. getAndSaveFile("images/$image.img", $where) or log::l("failed to write Install Floppy ($image.img) to $where"), return; |