summaryrefslogtreecommitdiffstats
path: root/lava-master/device-types-patch/patch-device-type.sh
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2020-06-20 12:15:55 -0700
committerGitHub <noreply@github.com>2020-06-20 12:15:55 -0700
commitb57379c6b204870a568ccc7adcad1712e715a536 (patch)
treed566dac6b4ba30d0d66f0e4cd7ab3a5973812253 /lava-master/device-types-patch/patch-device-type.sh
parent9596a7d56f8e4b6653ae1735075b3fc95b268fe9 (diff)
parent9918419127bbace972725ced88984ad2129ae5cb (diff)
Merge pull request #118 from montjoie/support_2020.05
Support 2020.05
Diffstat (limited to 'lava-master/device-types-patch/patch-device-type.sh')
-rw-r--r--lava-master/device-types-patch/patch-device-type.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/lava-master/device-types-patch/patch-device-type.sh b/lava-master/device-types-patch/patch-device-type.sh
new file mode 100644
index 0000000..eb7da43
--- /dev/null
+++ b/lava-master/device-types-patch/patch-device-type.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+DEVTYPE_PATH=/etc/lava-server/dispatcher-config/device-types/
+if [ -e /usr/share/lava-server/device-types/ ];then
+ DEVTYPE_PATH=/usr/share/lava-server/device-types/
+fi
+
+cd $DEVTYPE_PATH
+for patch in $(ls /root/device-types-patch/*patch)
+do
+ echo "DEBUG: patch with $patch"
+ sed -i 's,lava_scheduler_app/tests/device-types/,,' $patch
+done
+chown -R lavaserver:lavaserver $DEVTYPE_PATH