summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/list_modules.pm6
-rw-r--r--perl-install/install_steps.pm2
2 files changed, 5 insertions, 3 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm
index 7e30f04a7..8eb4c55c6 100644
--- a/kernel/list_modules.pm
+++ b/kernel/list_modules.pm
@@ -159,14 +159,16 @@ our %l = (
qw(parport parport_pc parport_serial),
qw(btaudio),
+ #- these need checking
+ qw(pcilynx sktr rrunner meye 3c559 buz paep),
+ ],
+ agpgart => [
if_(arch() =~ /alpha/, qw(alpha-agp)),
if_(arch() =~ /ia64/, qw(hp-agp i460-agp)),
if_(arch() =~ /ppc/, qw(uninorth-agp)),
qw(agpgart ali-agp amd64-agp amd-k7-agp ati-agp intel-agp),
qw(nvidia-agp sworks-agp sis-agp via-agp),
- #- these need checking
- qw(pcilynx sktr rrunner meye 3c559 buz paep),
],
},
);
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 38a46334c..b61623018 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -334,7 +334,7 @@ sub beforeInstallPackages {
log::l("setting excludedocs to $o->{excludedocs}");
substInFile { s/%_excludedocs.*//; $_ .= "%_excludedocs yes\n" if eof && $o->{excludedocs} } "$o->{prefix}/etc/rpm/macros";
- if (my ($agp) = modules::probe_category('other/agpgart')) {
+ if (my ($agp) = modules::probe_category('various/agpgart')) {
modules::add_alias('agpgart', $agp);
}