summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table_empty.pm
Commit message (Expand)AuthorAgeFilesLines
* empty partition table as assumed only if the MBR is really composed of only n...Francois Pons2000-10-131-1/+1
* no_commentPascal Rigaux2000-09-141-1/+1
* no_commentPascal Rigaux2000-07-241-0/+38
ass="hl opt">= \&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"); } };