diff options
-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 { |