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
352 B
14 lines
352 B
#!/bin/bash |
|
# Include wired net drivers, excluding wireless |
|
for modname in $(find "$srcmods/kernel/drivers" -name '*.ko'); do |
|
if nm -uPA $modname | grep -q eth_type_trans; then |
|
if echo "$modname" | grep -q wireless; then |
|
continue |
|
else |
|
instmods $modname |
|
fi |
|
fi |
|
done |
|
instmods ecb arc4 |
|
# bridge modules |
|
instmods bridge stp llc
|
|
|