#!/bin/ash
for i in `lsmod |awk '{print $1".ko"}'` ;do
    cp $(find /usr/lib/modules/`uname -r`  -name $i) .
#    echo $i
done