summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-02-07 13:46:10 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-02-07 13:46:10 +0000
commit4d7ed03fc7f8f38a985be5aca35960158f352ca7 (patch)
treea65cd688e68bd84f19b6135ddcdaf7f517e3937d /perl-install
parent9c6baa48e2fb448898c6d7ef3502099145c7ade7 (diff)
downloaddrakx-backup-do-not-use-4d7ed03fc7f8f38a985be5aca35960158f352ca7.tar
drakx-backup-do-not-use-4d7ed03fc7f8f38a985be5aca35960158f352ca7.tar.gz
drakx-backup-do-not-use-4d7ed03fc7f8f38a985be5aca35960158f352ca7.tar.bz2
drakx-backup-do-not-use-4d7ed03fc7f8f38a985be5aca35960158f352ca7.tar.xz
drakx-backup-do-not-use-4d7ed03fc7f8f38a985be5aca35960158f352ca7.zip
(setupBootloaderBefore, miscellaneousBefore): remove taking care of
profiles and memsize. Now in any & bootloader (miscellaneousBefore): CLEAN_TMP is now in $o->{bootloader}, not in $o->{miscellaneous} anymore
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install_steps.pm16
1 files changed, 4 insertions, 12 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index f104ca885..a0a6b3119 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -658,11 +658,6 @@ sub setupBootloaderBefore {
#- propose the default fb mode for kernel fb, if aurora is installed too.
bootloader::suggest($o->{prefix}, $o->{bootloader}, $o->{hds}, $o->{fstab}, install_any::kernelVersion($o),
pkgs::packageFlagInstalled(pkgs::packageByName($o->{packages}, 'Aurora') || {}) && $vga);
- if ($o->{miscellaneous}{profiles}) {
- my $e = bootloader::get_label("linux", $o->{bootloader});
- push @{$o->{bootloader}{entries}}, { %$e, label => "office", append => "$e->{append} prof=Office" };
- $e->{append} .= " prof=Home";
- }
bootloader::suggest_floppy($o->{bootloader}) if $o->{security} <= 3;
$o->{bootloader}{keytable} ||= keyboard::keyboard2kmap($o->{keyboard});
}
@@ -736,7 +731,7 @@ sub configureX {
{ local $::testing = 0; #- unset testing
local $::auto = 1;
$o->{X}{skiptest} = 1;
- Xconfigurator::main($o->{prefix}, $o->{X}, class_discard->new, $o->{allowFB}, bool($o->{pcmcia}), sub { $o->pkg_install(@_) });
+ Xconfigurator::main($o->{prefix}, $o->{X}, class_discard->new, $o->{allowFB}, sub { $o->pkg_install(@_) });
}
$o->configureXAfter;
}
@@ -760,23 +755,20 @@ sub miscellaneousBefore {
my %s = getVarsFromSh("$o->{prefix}/etc/sysconfig/system");
$o->{miscellaneous}{HDPARM} ||= $s{HDPARM} if exists $s{HDPARM};
- $o->{miscellaneous}{CLEAN_TMP} ||= $s{CLEAN_TMP} if exists $s{CLEAN_TMP};
$o->{security} ||= $s{SECURITY} if exists $s{SECURITY};
$ENV{SECURE_LEVEL} = $o->{security};
add2hash_ $o, { useSupermount => $o->{security} < 4 && arch() !~ /sparc/ && !$::corporate };
- cat_("/proc/cmdline") =~ /mem=(\S+)/;
- add2hash_($o->{miscellaneous} ||= {}, { numlock => !$o->{pcmcia}, $1 ? (memsize => $1) : () });
+ add2hash_($o->{miscellaneous} ||= {}, { numlock => !$o->{pcmcia} });
}
sub miscellaneous {
my ($o) = @_;
local $_ = $o->{bootloader}{perImageAppend};
- $o->{miscellaneous}{memsize} ||= availableRamMB() . 'M' if $o->{lnx4win};
- if (my $ramsize = $o->{miscellaneous}{memsize} and !/mem=/) {
- $_ .= " mem=$ramsize";
+ if ($o->{lnx4win} and !/mem=/) {
+ $_ .= ' mem=' . availableRamMB() . 'M';
}
if (my @l = detect_devices::IDEburners() and !/ide-scsi/) {
$_ .= " " . join(" ", (map { "$_->{device}=ide-scsi" } @l),