summarylogtreecommitdiffstats
path: root/move-modules
diff options
context:
space:
mode:
authorGiuseppe Sellaroli2017-02-07 13:18:01 -0500
committerGiuseppe Sellaroli2017-02-07 13:18:01 -0500
commit5140ecf01165162824fdac99aada11e39102dc99 (patch)
tree1f6670719357861b1b6797448d3f345227e6214c /move-modules
parentbf3407b7076cc0663bd536e01ed18a0c46e3def2 (diff)
downloadaur-5140ecf01165162824fdac99aada11e39102dc99.tar.gz
implemented move of the built module from a kernel-specific folder to
the root /src folder, to avoid possible problems with lts or custom kernels
Diffstat (limited to 'move-modules')
-rwxr-xr-xmove-modules9
1 files changed, 9 insertions, 0 deletions
diff --git a/move-modules b/move-modules
new file mode 100755
index 000000000000..27f08626d26f
--- /dev/null
+++ b/move-modules
@@ -0,0 +1,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
+
+