diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-03-20 21:36:09 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-03-20 21:36:09 +0000 |
commit | 52d7a2de5518ccb7eef3225383bad2711a3695bb (patch) | |
tree | f13a0493716ad2d2616dfef1c9d3f8bc86025f4f /perl-install/install_steps_interactive.pm | |
parent | c0d16c54372f940ca9cde3dbfd9d57a0d70b8d79 (diff) | |
download | drakx-52d7a2de5518ccb7eef3225383bad2711a3695bb.tar drakx-52d7a2de5518ccb7eef3225383bad2711a3695bb.tar.gz drakx-52d7a2de5518ccb7eef3225383bad2711a3695bb.tar.bz2 drakx-52d7a2de5518ccb7eef3225383bad2711a3695bb.tar.xz drakx-52d7a2de5518ccb7eef3225383bad2711a3695bb.zip |
make_boot_img: add routine for - PPC
any.pm: double "Append" entry in expert mode for yaboot.conf - PPC
install_steps_interactive: setup dmasound - PPC
modules.pm: load Mac hardware modules - PPC
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 874099d14..62c1ba7b5 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -789,7 +789,7 @@ sub summary { } grep { $_->{driver} eq 'hisax' } detect_devices::probeall()), (map { { label => _("Sound card"), val => $_->{description} } - } modules::get_that_type('sound')), + } arch() !~ /ppc/ ? modules::get_that_type('sound') : modules::load_thiskind('sound')), (map { { label => _("TV card"), val => $_->{description} } } grep { $_->{driver} eq 'bttv' } detect_devices::probeall()), |