diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-05-03 09:54:05 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-05-03 09:54:05 +0000 |
commit | 398eb0953c8d865ea1c76ce76aa26eb1fe4d3a4e (patch) | |
tree | 39b997e34a55d8218030ba3b5bf640246afd3d69 /perl-install/install2.pm | |
parent | 7e97be4647322b29d7218bac9b078a0d6b294afd (diff) | |
download | drakx-398eb0953c8d865ea1c76ce76aa26eb1fe4d3a4e.tar drakx-398eb0953c8d865ea1c76ce76aa26eb1fe4d3a4e.tar.gz drakx-398eb0953c8d865ea1c76ce76aa26eb1fe4d3a4e.tar.bz2 drakx-398eb0953c8d865ea1c76ce76aa26eb1fe4d3a4e.tar.xz drakx-398eb0953c8d865ea1c76ce76aa26eb1fe4d3a4e.zip |
blank.img has been removed, so remove special code handling it
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 1850cd5d9..8e654cb76 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -114,7 +114,7 @@ sub selectMouse { sub setupSCSI { my ($clicked, $_ent_number, $auto) = @_; - if (!$o->{blank} && !$::testing && !$::uml_install) { + if (!$::testing && !$::uml_install) { -d '/lib/modules/' . c::kernel_version() || -s modules::cz_file() or die N("Can't access kernel modules corresponding to your kernel (file %s is missing), this generally means your boot floppy in not in sync with the Installation medium (please create a newer boot floppy)", modules::cz_file()); } @@ -409,7 +409,6 @@ sub main { alawindows => sub { $o->{security} = 0; $o->{partitioning}{clearall} = 1; $o->{bootloader}{crushMbr} = 1 }, fdisk => sub { $o->{partitioning}{fdisk} = 1 }, nomouseprobe => sub { $o->{nomouseprobe} = $v }, - blank => sub { $o->{blank} = $::blank = 1 }, updatemodules => sub { $o->{updatemodules} = 1 }, move => sub { $::move = 1 }, }}{lc $n}; &$f if $f; |