summarylogtreecommitdiffstats
path: root/move-modules
blob: 27f08626d26fa11d05dbd07d13e75bee66e94756 (plain)
1
2
3
4
5
6
7
8
9
#! /bin/sh
# Move the compiled kernel modules wacom.ko and wacom_w8001.ko from the kernel specific folder (e.g., 3.17, 4.5) to the root folder.

for f in `find -name "wacom.ko" -o -name "wacom_w8001.ko" -type f`
do
  mv $f .
done