diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-09 14:51:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-09 14:51:56 +0000 |
commit | cfeef5776938afca666f043e62827a4f2457c938 (patch) | |
tree | 4a6df16cf9658610a9af874f7d4871abd55811bf /perl-install/harddrake/sound.pm | |
parent | 02cedf38a8500b5b2eb9d113c862c147f091e9ff (diff) | |
download | drakx-cfeef5776938afca666f043e62827a4f2457c938.tar drakx-cfeef5776938afca666f043e62827a4f2457c938.tar.gz drakx-cfeef5776938afca666f043e62827a4f2457c938.tar.bz2 drakx-cfeef5776938afca666f043e62827a4f2457c938.tar.xz drakx-cfeef5776938afca666f043e62827a4f2457c938.zip |
- pss is the oss equivalent of alsa ad1848
- oss ad1848 is not a driver but a sub module
Diffstat (limited to 'perl-install/harddrake/sound.pm')
-rw-r--r-- | perl-install/harddrake/sound.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index d0d221a42..1a39c6e1b 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -29,7 +29,7 @@ my $has_nvaudio = -x '/lib/modules/' . c::kernel_version() . '/'; my %alsa2oss = ( "snd-ad1816a" => [ "ad1816" ], # isa - "snd-ad1848" => [ "ad1848" ], # isa + "snd-ad1848" => [ "pss" ], # isa "snd-ali5451" => [ "trident" ], "snd-als100" => [ "sb" ], # isa "snd-als4000" => [ "unknown" ], @@ -85,7 +85,6 @@ my %alsa2oss = my %oss2alsa = ( "ad1816" => [ "snd-ad1816a" ], - "ad1848" => [ "snd-ad1848" ], "ad1889" => [ "unknown" ], "ali5455" => [ "snd-intel8x0" ], "audigy" => [ "snd-emu10k1" ], @@ -114,6 +113,7 @@ my %oss2alsa = "opl3sa" => [ "snd-opl3sa2" ], "opl3sa2" => [ "snd-opl3sa2" ], "pas2" => [ "unknown" ], + "pss" => [ "snd-ad1848" ], "rme96xx" => [ "snd-rme9652" ], "sb" => [ "snd-als100", "snd-cmi8330", "snd-sb8", "snd-sb16" ], "sgalaxy" => [ "snd-sgalaxy" ], |