-
Notifications
You must be signed in to change notification settings - Fork 11
/
load_preset1.sh
executable file
·17 lines (14 loc) · 1004 Bytes
/
load_preset1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/bash
export LD_LIBRARY_PATH=/data/data/com.termux/files/usr/lib
export HOME=/data/data/com.termux/files/home
export PATH=/usr/local/bin:/data/data/com.termux/files/usr/bin:/data/data/com.termux/files/usr/sbin:/data/data/com.termux/files/usr/bin/applets:/bin:/sbin:/vendor/bin:/system/sbin:/system/bin:/system/xbin:/data/data/com.termux/files/usr/bin/python
export PYTHONPATH=/data/openpilot
cd /data/openpilot
/data/data/com.termux/files/usr/bin/cat /data/preset1 | while read line
do
ParamName=$(/data/data/com.termux/files/usr/bin/echo $line | /data/data/com.termux/files/usr/bin/applets/awk -F ':' '{print $1}')
ParamValue=$(/data/data/com.termux/files/usr/bin/echo $line | /data/data/com.termux/files/usr/bin/applets/awk -F ':' '{print $2}')
/data/data/com.termux/files/usr/bin/echo -n $ParamValue > /data/params/d/${ParamName}
/data/data/com.termux/files/usr/bin/chown root:root /data/params/d/${ParamName}
/data/data/com.termux/files/usr/bin/chmod 666 /data/params/d/${ParamName}
done