summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm17
1 files changed, 16 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index cf13372b9..181c37099 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -154,7 +154,7 @@ sub afterInstallPackages($) {
#- why not? cuz weather is nice today :-) [pixel]
sync(); sync();
-# configPCMCIA($o->{rootPath}, $o->{pcmcia});
+ $o->pcmciaConfig();
}
#------------------------------------------------------------------------------
@@ -177,6 +177,21 @@ sub configureNetwork($) {
}
#------------------------------------------------------------------------------
+sub pcmciaConfig($) {
+ my ($o) = @_;
+ my $t = $o->{pcmcia};
+ my $f = "$o->{prefix}/etc/sysconfig/pcmcia";
+
+ # should be set after installing the package above else the file will be renamed.
+ setVarsInSh($f, {
+ PCMCIA => $t ? "yes" : "no",
+ PCIC => $t,
+ PCIC_OPTS => "",
+ CORE_OPTS => "",
+ });
+}
+
+#------------------------------------------------------------------------------
sub timeConfig {
my ($o, $f) = @_;
my $t = $o->{timezone};