diff options
author | Mystery Man <unknown@mandriva.org> | 2004-01-09 21:14:12 +0000 |
---|---|---|
committer | Mystery Man <unknown@mandriva.org> | 2004-01-09 21:14:12 +0000 |
commit | 426b28dc63b1a571898e8edd580a0134e0239499 (patch) | |
tree | 8fbcfd82a41f005786abe4a1b1f1eef4cca01166 /perl-install/patch/patch-nforce.pl | |
parent | 9fc2f8c1fe91c12ae413617392b02ad12571d361 (diff) | |
download | drakx-backup-do-not-use-9_3_15mdk.tar drakx-backup-do-not-use-9_3_15mdk.tar.gz drakx-backup-do-not-use-9_3_15mdk.tar.bz2 drakx-backup-do-not-use-9_3_15mdk.tar.xz drakx-backup-do-not-use-9_3_15mdk.zip |
This commit was manufactured by cvs2svn to create tag 'V9_3_15mdk'.V9_3_15mdk
Diffstat (limited to 'perl-install/patch/patch-nforce.pl')
-rw-r--r-- | perl-install/patch/patch-nforce.pl | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/perl-install/patch/patch-nforce.pl b/perl-install/patch/patch-nforce.pl deleted file mode 100644 index 35587ec75..000000000 --- a/perl-install/patch/patch-nforce.pl +++ /dev/null @@ -1,35 +0,0 @@ -use install_steps; -use common; - -package install_steps; - -my $old_afterInstallPackages = \&afterInstallPackages; -undef *afterInstallPackages; -*afterInstallPackages = sub { - &$old_afterInstallPackages; - - my ($o) = @_; - - # workaround nforce stuff. - # - # modules.pm uses /lib/modules/VERSION/modules*map to know which - # sound drivers to use : this'll cause i810_audio to override - # nvaudio since it exports the nvforce audio pci ids - # - # the right solution is to : - # - # - remove the nforce ids from i810_audio until the oss driver got - # fixes implemented in alsa driver for nforce (snd-intel8x0.o) - # - # - ask nvidia to declare which pci ids they use and export them - # for depmod : - # MODULE_DEVICE_TABLE (pci, <name_of_the struct pci_device_id variable>); - - #- try to workaround nforce stuff. - foreach (keys %{$o->{packages}{provides}{kernel}}) { - my $p = $o->{packages}{depslist}[$_]; - my ($ext, $version, $release) = $p->name =~ /^kernel-([^\d\-]*)-?([^\-]*)\.([^\-\.]*)$/ or next; - -s "$o->{prefix}/lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz" and - run_program::rooted($o->{prefix}, "cp -f /lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz /lib/modules/$version-$release$ext/kernel/drivers/sound/i810_audio.o.gz"); - } -}; |