diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-06 15:25:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-06 15:25:28 +0000 |
commit | 67b53f4298b8536bc5cea5c1aff0c538e0925c3d (patch) | |
tree | 3002374dc465a2df19642445548f125a7ecf0cc1 /perl-install/install2.pm | |
parent | e4ebaadadb7ee531304a72e2127f4b0626c321cc (diff) | |
download | drakx-67b53f4298b8536bc5cea5c1aff0c538e0925c3d.tar drakx-67b53f4298b8536bc5cea5c1aff0c538e0925c3d.tar.gz drakx-67b53f4298b8536bc5cea5c1aff0c538e0925c3d.tar.bz2 drakx-67b53f4298b8536bc5cea5c1aff0c538e0925c3d.tar.xz drakx-67b53f4298b8536bc5cea5c1aff0c538e0925c3d.zip |
remove mkbootdisk support
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 9a5c98b26..3226fa86a 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -35,7 +35,6 @@ use fs; #-####################################################################################### $o = $::o = { # bootloader => { linear => 0, message => 1, timeout => 5, restricted => 0 }, - mkbootdisk => 0, #- no mkbootdisk if 0 or undef, find a floppy with 1, or fd1 #- packages => [ qw() ], partitioning => { clearall => 0, eraseBadPartitions => 0, auto_allocate => 0 }, #-, readonly => 0 }, authentication => { md5 => 1, shadow => 1 }, @@ -414,7 +413,6 @@ sub main { (my $root = `/bin/pwd`) =~ s|(/[^/]*){5}$||; symlinkf $root, "/tmp/image" or die "unable to create link /tmp/image"; $o->{method} ||= "cdrom"; - $o->{mkbootdisk} = 0; } if (!$::testing && !$::live) { symlink "rhimage", "/tmp/image"; #- for compatibility with old stage1 |