diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-25 14:27:44 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-25 14:27:44 +0000 |
commit | d44e50a3201eb35b5d7675c35f780f064930a526 (patch) | |
tree | edce2dd9d29ad4ac46d1f885064d062fdf7fb855 | |
parent | e2f8e6b70b507ad070688ae10eea097303eb0412 (diff) | |
download | drakx-d44e50a3201eb35b5d7675c35f780f064930a526.tar drakx-d44e50a3201eb35b5d7675c35f780f064930a526.tar.gz drakx-d44e50a3201eb35b5d7675c35f780f064930a526.tar.bz2 drakx-d44e50a3201eb35b5d7675c35f780f064930a526.tar.xz drakx-d44e50a3201eb35b5d7675c35f780f064930a526.zip |
re-integrate autoprobe of tulip network cards, kernel-2.4 has strange way to classify some of its net modules..
-rwxr-xr-x | mdk-stage1/pci-resource/update-pci-ids.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/pci-resource/update-pci-ids.pl b/mdk-stage1/pci-resource/update-pci-ids.pl index 2750d8aac..140889213 100755 --- a/mdk-stage1/pci-resource/update-pci-ids.pl +++ b/mdk-stage1/pci-resource/update-pci-ids.pl @@ -37,7 +37,7 @@ foreach $type (keys %t) { struct pci_module_map ${type}_pci_ids[] = { "; my %l; - foreach (glob("../../kernel/lib/modules/*/$t{$type}/*.o"), glob("../../kernel/lib/modules/*/kernel/drivers/$t{$type}/*.o")) { + foreach (glob("../../kernel/lib/modules/*/$t{$type}/*.o"), glob("../../kernel/lib/modules/*/kernel/drivers/$t{$type}/{*/,}*.o")) { m|([^/]*)\.o$|; $l{$1} = 1; } |