diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-05-03 23:25:44 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-05-03 23:43:29 +0200 |
commit | ce9c9b988ceae225606a9173262b6ff1dfbb25f1 (patch) | |
tree | 154bcd1e1f30587d14a5cfc9e6f75230c749b066 | |
parent | 044d9f623c46bd9f860ad3fbd804db56e67c12f3 (diff) | |
download | drakx-ce9c9b988ceae225606a9173262b6ff1dfbb25f1.tar drakx-ce9c9b988ceae225606a9173262b6ff1dfbb25f1.tar.gz drakx-ce9c9b988ceae225606a9173262b6ff1dfbb25f1.tar.bz2 drakx-ce9c9b988ceae225606a9173262b6ff1dfbb25f1.tar.xz drakx-ce9c9b988ceae225606a9173262b6ff1dfbb25f1.zip |
kill last remaining mips bits
-rw-r--r-- | perl-install/bootloader.pm | 13 | ||||
-rw-r--r-- | perl-install/harddrake/sound.pm | 3 |
2 files changed, 1 insertions, 15 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index f538dcee2..7848af1a6 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1321,19 +1321,6 @@ sub check_enough_space() { unlink $e; } -sub install_pmon2000 { - my ($_bootloader, $_all_hds) = @_; - log::l("Mips/pmon2000 - nothing to install..."); -} -sub write_pmon2000 { - my ($_bootloader, $_all_hds) = @_; - log::l("Mips/pmon2000 - nothing to write..."); -} -sub when_config_changed_pmon2000 { - my ($_bootloader) = @_; - #- do not do anything -} - sub install_uboot { my ($_bootloader, $_all_hds) = @_; log::l("uboot - nothing to install..."); diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index c64efd6bf..a173e8984 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -200,8 +200,7 @@ sub configure_one_sound_slot { my ($modules_conf, $index, $driver) = @_; $modules_conf->set_sound_slot("sound-slot-$index", $driver); $modules_conf->set_options($driver, "xbox=1") if $driver eq "snd_intel8x0" && detect_devices::is_xbox(); - $modules_conf->set_options('snd-ac97-codec', "power_save=1") if $driver =~ /^snd/ && detect_devices::isLaptop() - && arch() !~ /mips/; + $modules_conf->set_options('snd-ac97-codec', "power_save=1") if $driver =~ /^snd/ && detect_devices::isLaptop(); } sub configure_sound_slots { |