wanpipe-kernel-sources/scripts/copy_modules.sh

9 lines
112 B
Bash
Raw Normal View History

2017-08-31 14:38:39 +02:00
#!/bin/bash
from=$1
to=$2
echo "Coping $from to $to"
eval "cp $(find $from -name '*.ko' | xargs) $to"
exit $?