forked from RetroFlag/retroflag-picase
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathinstall.sh
80 lines (66 loc) · 2.61 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
#Step 1) Check if root--------------------------------------
if [[ $EUID -ne 0 ]]; then
echo "Please execute script as root."
exit 1
fi
#-----------------------------------------------------------
#Step 2) Update repository----------------------------------
sudo apt-get update -y
#-----------------------------------------------------------
#Step 3) disable UART from retroflag install ---------------
cd /boot/
File=config.txt
if grep -q "^enable_uart=1" "$File";
then
echo "UART is already enabled. Disabeling now!"
echo "Commenting out line - your CPU is not throttled anymore"
sed -i -e "s|^enable_uart=1|#enable_uart=1|" "$File" &> /dev/null
else
echo "UART is disabled. CPU is working with full speed"
fi
#-----------------------------------------------------------
#Step 4) Install gpiozero module----------------------------
sudo apt-get install -y python3-gpiozero
#-----------------------------------------------------------
#Step 5) Download Python script-----------------------------
cd /opt/
sudo mkdir -p RetroFlag
cd /opt/RetroFlag
script=SafeShutdown.py
if [ -e $script ];
then
echo "Script SafeShutdown.py already exists. Overwriting file now!"
echo "Downloading ..."
else
echo "Script will be installed now! Downloading ..."
fi
wget -N -q --show-progress "https://raw.githubusercontent.com/crcerror/retroflag-picase/master/SafeShutdown.py"
wget -N -q --show-progress "https://raw.githubusercontent.com/crcerror/retroflag-picase/master/multi_switch.sh"
chmod +x multi_switch.sh
#-----------------------------------------------------------
#Step 6) Enable Python script to run on start up------------
cd /etc/
RC=rc.local
if grep -q "sudo python3 \/opt\/RetroFlag\/SafeShutdown.py \&" "$RC";
then
echo "File /etc/rc.local already configured. Doing nothing."
else
sed -i -e "s/^exit 0/sudo python3 \/opt\/RetroFlag\/SafeShutdown.py \&\n&/g" "$RC"
echo "File /etc/rc.local configured."
fi
#-----------------------------------------------------------
#Step 7) enable overlay file for powercut ---------------
cd /boot/
File=config.txt
if ! grep -q "^dtoverlay=gpio-poweroff,gpiopin=4,active_low=1,input=1" $File; then
echo "Enable overlay file"
echo "# Overlay setup for proper powercut, needed for Retroflag cases" >> "$File"
echo "dtoverlay=gpio-poweroff,gpiopin=4,active_low=1,input=1" >> "$File"
fi
#-----------------------------------------------------------
#Step 8) Reboot to apply changes----------------------------
echo "RetroFlag Pi Case installation done. Will now reboot after 3 seconds."
sleep 3
sudo reboot
#-----------------------------------------------------------