forked from RetroFlag/retroflag-picase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recalbox_install.sh
67 lines (56 loc) · 1.8 KB
/
recalbox_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
#Step 1 make /boot writable---------------------------------
sleep 2s
mount -o remount, rw /boot
mount -o remount, rw /
#Step 2) enable UART and system.power.switch----------------
File=/boot/config.txt
if grep -q "enable_uart=1" "$File";
then
echo "UART already enabled. Doing nothing."
else
echo "enable_uart=1" >> $File
echo "UART enabled."
fi
sleep 2s
if grep -q "^system.power.switch=PIN356ONOFFRESET*" "/recalbox/share/system/recalbox.conf";
then
echo "PIN356ONOFFRESET configuration already enabled."
else
echo "system.power.switch=PIN356ONOFFRESET" >> /recalbox/share/system/recalbox.conf
echo "PIN356ONOFFRESET configuration enabled."
fi
#-----------------------------------------------------------
#Step 3) Download Python script-----------------------------
mkdir /opt/RetroFlag
sleep 2s
script=/opt/RetroFlag/SafeShutdown.py
if [ -e $script ];
then
echo "Script SafeShutdown.py already exists. Doing nothing."
else
wget --no-check-certificate -O $script "https://raw.githubusercontent.com/RetroFlag/retroflag-picase/master/recalbox_SafeShutdown.py"
fi
#-----------------------------------------------------------
sleep 2s
#Step 4) Enable Python script to run on start up------------
DIR=/etc/init.d/S99RetroFlag
if grep -q "python $script &" "S99RetroFlag";
then
if [ -x $DIR];
then
echo "Executable S99RetroFlag already configured. Doing nothing."
else
chmod +x $DIR
fi
else
echo "python $script &" >> $DIR
chmod +x $DIR
echo "Executable S99RetroFlag configured."
fi
#-----------------------------------------------------------
#Step 5) Reboot to apply changes----------------------------
echo "RetroFlag Pi Case Switch installation done. Will now reboot after 3 seconds."
sleep 3
shutdown -r now
#-----------------------------------------------------------