You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
396 B
14 lines
396 B
#!/bin/bash |
|
# Include wired net drivers, excluding wireless |
|
for modname in $(find "$srcmods/kernel/drivers" -name '*.ko'); do |
|
if nm -uPA $modname | egrep -q 'eth_type_trans|register_virtio_device'; then |
|
if echo "$modname" | egrep -q '/wireless/|/isdn/|/uwb/'; then |
|
continue |
|
else |
|
instmods $modname |
|
fi |
|
fi |
|
done |
|
instmods ecb arc4 |
|
# bridge modules |
|
instmods bridge stp llc
|
|
|