diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-02-23 15:28:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-02-23 15:28:34 +0000 |
commit | 247b7169e6db277a9bdc808c62d9315f9bd0d3bc (patch) | |
tree | 63f30f719451f7087029dfd1cb781833dba46b70 /perl-install | |
parent | 692963621cddb58cf2f1744210fa415661fa30b6 (diff) | |
download | drakx-247b7169e6db277a9bdc808c62d9315f9bd0d3bc.tar drakx-247b7169e6db277a9bdc808c62d9315f9bd0d3bc.tar.gz drakx-247b7169e6db277a9bdc808c62d9315f9bd0d3bc.tar.bz2 drakx-247b7169e6db277a9bdc808c62d9315f9bd0d3bc.tar.xz drakx-247b7169e6db277a9bdc808c62d9315f9bd0d3bc.zip |
fix
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index e7f9355a8..32d3958a5 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -740,6 +740,7 @@ sub default_packages { push @l, "alsa", "alsa-utils" if any { $o->{modules_conf}->get_alias("sound-slot-$_") =~ /^snd-/ } 0 .. 4; my $dmi_System = detect_devices::dmidecode_category('System'); my $dmi_BIOS = detect_devices::dmidecode_category('BIOS'); + my $dmi_Base_Board = detect_devices::dmidecode_category('Base Board'); if ($dmi_System->{Manufacturer} =~ /Dell Computer/ && $dmi_System->{'Product Name'} =~ /Inspiron|Latitude/) { modules::append_to_modules_loaded_at_startup_for_all_kernels('i8k'); push @l, "i8kutils"; @@ -749,7 +750,7 @@ sub default_packages { push @l, "toshutils"; } if ($dmi_BIOS->{Vendor} eq 'COMPAL' && $dmi_BIOS->{Characteristics} =~ /Function key-initiated network boot is supported/ - || $dmi_BIOS->{'Base Board'}{Manufacturer} =~ /^ACER/ && $dmi_BIOS->{'Base Board'}{'Product Name'} =~ /TravelMate 610/) { + || $dmi_Base_Board->{Manufacturer} =~ /^ACER/ && $dmi_Base_Board->{'Product Name'} =~ /TravelMate 610/) { modules::append_to_modules_loaded_at_startup_for_all_kernels('acerhk'); } |