2013-07-26 22:38:34 +02:00
|
|
|
|
#!/bin/sh
|
2016-03-12 03:49:19 +01:00
|
|
|
|
# Script for downloading and installing the latest Hyperion release
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
2014-01-05 16:27:35 +01:00
|
|
|
|
# Make sure /sbin is on the path (for service to find sub scripts)
|
|
|
|
|
PATH="/sbin:$PATH"
|
|
|
|
|
|
2016-03-22 01:01:54 +01:00
|
|
|
|
#Check which arguments are used
|
|
|
|
|
if [ "$1" = "HyperConInstall" ] || [ "$2" = "HyperConInstall" ]; then
|
|
|
|
|
HCInstall=1
|
|
|
|
|
else HCInstall=0
|
|
|
|
|
fi
|
|
|
|
|
if [ "$1" = "WS281X" ] || [ "$2" = "WS281X" ]; then
|
|
|
|
|
PWM=1
|
|
|
|
|
else PWM=0
|
|
|
|
|
fi
|
|
|
|
|
|
2016-03-12 03:49:19 +01:00
|
|
|
|
#Check if HyperCon is logged in as root
|
2016-03-22 01:01:54 +01:00
|
|
|
|
if [ $(id -u) != 0 ] && [ $HCInstall -eq 1 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '---> Critical Error: Please connect as user "root" through HyperCon'
|
|
|
|
|
echo '---> We need admin privileges to install/update your Hyperion! -> abort'
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
#Check, if script is running as root
|
|
|
|
|
if [ $(id -u) != 0 ]; then
|
|
|
|
|
echo '---> Critical Error: Please run the script as root (sudo sh ./install_hyperion.sh) -> abort'
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
#Welcome message
|
|
|
|
|
echo '*******************************************************************************'
|
|
|
|
|
echo 'This script will install/update Hyperion and it´s services'
|
|
|
|
|
echo 'Version 0.1'
|
|
|
|
|
echo '*******************************************************************************'
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
2016-03-12 03:49:19 +01:00
|
|
|
|
# Find out if we are on OpenElec / OSMC
|
|
|
|
|
OS_OPENELEC=`grep -m1 -c OpenELEC /etc/issue`
|
|
|
|
|
OS_OSMC=`grep -m1 -c OSMC /etc/issue`
|
2014-01-04 14:12:33 +01:00
|
|
|
|
|
2015-01-24 23:42:22 +01:00
|
|
|
|
# Find out if its an imx6 device
|
2016-03-12 03:49:19 +01:00
|
|
|
|
CPU_RPI=`grep -m1 -c 'BCM2708\|BCM2709\|BCM2710' /proc/cpuinfo`
|
|
|
|
|
CPU_IMX6=`grep -m1 -c i.MX6 /proc/cpuinfo`
|
|
|
|
|
CPU_WETEK=`grep -m1 -c Amlogic /proc/cpuinfo`
|
2016-03-15 21:27:57 +01:00
|
|
|
|
CPU_X32X64=`uname -m | grep 'x86_32\|i686\|x86_64' | wc -l`
|
|
|
|
|
#CPU_X32=`uname -m | grep 'x86_32\|i686' | wc -l`
|
2016-03-12 03:49:19 +01:00
|
|
|
|
# Check that we have a known configuration
|
2016-03-16 20:57:06 +01:00
|
|
|
|
if [ $CPU_RPI -ne 1 ] && [ $CPU_IMX6 -ne 1 ] && [ $CPU_WETEK -ne 1 ] && [ $CPU_X32X64 -ne 1 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '---> Critical Error: CPU information does not match any known releases -> abort'
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
#Check, if year equals 1970
|
|
|
|
|
DATE=$(date +"%Y")
|
|
|
|
|
if [ "$DATE" -le "2015" ]; then
|
|
|
|
|
echo "---> Critical Error: Please update your systemtime (Year of your system: ${DATE}) -> abort"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2015-01-24 23:42:22 +01:00
|
|
|
|
|
2014-01-04 14:12:33 +01:00
|
|
|
|
# check which init script we should use
|
2016-03-12 03:49:19 +01:00
|
|
|
|
USE_SYSTEMD=`grep -m1 -c systemd /proc/1/comm`
|
2014-01-04 14:12:33 +01:00
|
|
|
|
USE_INITCTL=`which /sbin/initctl | wc -l`
|
2014-01-05 15:47:47 +01:00
|
|
|
|
USE_SERVICE=`which /usr/sbin/service | wc -l`
|
2013-11-24 13:37:30 +01:00
|
|
|
|
|
2013-10-02 09:44:08 +02:00
|
|
|
|
# Make sure that the boblight daemon is no longer running
|
2014-01-05 15:47:47 +01:00
|
|
|
|
BOBLIGHT_PROCNR=$(pidof boblightd | wc -l)
|
2016-03-12 03:49:19 +01:00
|
|
|
|
if [ $BOBLIGHT_PROCNR -eq 1 ]; then
|
|
|
|
|
echo '---> Critical Error: Found running instance of boblight. Please stop boblight via XBMC menu before installing hyperion -> abort'
|
|
|
|
|
exit 1
|
2013-10-02 09:44:08 +02:00
|
|
|
|
fi
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
2013-10-02 09:44:08 +02:00
|
|
|
|
# Stop hyperion daemon if it is running
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '---> Stop Hyperion, if necessary'
|
|
|
|
|
if [ $OS_OPENELEC -eq 1 ]; then
|
|
|
|
|
killall hyperiond 2>/dev/null
|
|
|
|
|
elif [ $USE_INITCTL -eq 1 ]; then
|
|
|
|
|
/sbin/initctl stop hyperion 2>/dev/null
|
2014-01-05 15:47:47 +01:00
|
|
|
|
elif [ $USE_SERVICE -eq 1 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
/usr/sbin/service hyperion stop 2>/dev/null
|
|
|
|
|
elif [ $USE_SYSTEMD -eq 1 ]; then
|
|
|
|
|
service hyperion stop 2>/dev/null
|
|
|
|
|
#many people installed with the official script and this just uses service, if both registered -> dead
|
|
|
|
|
/usr/sbin/service hyperion stop 2>/dev/null
|
2014-01-04 14:28:33 +01:00
|
|
|
|
fi
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
2016-03-12 03:49:19 +01:00
|
|
|
|
#Install dependencies for Hyperion
|
|
|
|
|
if [ $OS_OPENELEC -ne 1 ]; then
|
|
|
|
|
echo '---> Install/Update Hyperion dependencies (This may take a while)'
|
|
|
|
|
apt-get -qq update && apt-get -qq --yes install libqtcore4 libqtgui4 libqt4-network libusb-1.0-0 ca-certificates
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
#Check, if dtparam=spi=on is in place (not for OPENELEC)
|
2016-03-22 01:01:54 +01:00
|
|
|
|
if [ $PWM -ne 1 ] && [ $CPU_RPI -eq 1 ] && [ $OS_OPENELEC -ne 1 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
SPIOK=`grep '^\dtparam=spi=on' /boot/config.txt | wc -l`
|
|
|
|
|
if [ $SPIOK -ne 1 ]; then
|
|
|
|
|
echo '---> Raspberry Pi found, but SPI is not ready, we write "dtparam=spi=on" to /boot/config.txt'
|
|
|
|
|
sed -i '$a dtparam=spi=on' /boot/config.txt
|
|
|
|
|
REBOOTMESSAGE="echo Please reboot your Raspberry Pi, we inserted dtparam=spi=on to /boot/config.txt"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
#Check, if dtparam=spi=on is in place (just for OPENELEC)
|
2016-03-22 01:01:54 +01:00
|
|
|
|
if [ $PWM -ne 1 ] && [ $CPU_RPI -eq 1 ] && [ $OS_OPENELEC -eq 1 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
SPIOK=`grep '^\dtparam=spi=on' /flash/config.txt | wc -l`
|
|
|
|
|
if [ $SPIOK -ne 1 ]; then
|
|
|
|
|
mount -o remount,rw /flash
|
|
|
|
|
echo '---> Raspberry Pi with OpenELEC found, but SPI is not ready, we write "dtparam=spi=on" to /flash/config.txt'
|
|
|
|
|
sed -i '$a dtparam=spi=on' /flash/config.txt
|
|
|
|
|
mount -o remount,ro /flash
|
|
|
|
|
REBOOTMESSAGE="echo Please reboot your OpenELEC, we inserted dtparam=spi=on to /flash/config.txt"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
2016-03-22 01:01:54 +01:00
|
|
|
|
|
|
|
|
|
#Check, if dtoverlay=pwm is in place (not for OPENELEC)
|
|
|
|
|
#if [ $PWM -eq 1 ] && [ $CPU_RPI -eq 1 ] && [ $OS_OPENELEC -ne 1 ]; then
|
|
|
|
|
# PWMOK=`grep '^\dtoverlay=pwm' /boot/config.txt | wc -l`
|
|
|
|
|
# if [ $PWMOK -ne 1 ]; then
|
|
|
|
|
# echo '---> Raspberry Pi found, but PWM is not ready, we write "dtoverlay=pwm" to /boot/config.txt'
|
|
|
|
|
# sed -i '$a dtoverlay=pwm' /boot/config.txt
|
|
|
|
|
# PWMREBOOTMESSAGE="echo Please reboot your Raspberry Pi, we inserted dtoverlay=pwm to /boot/config.txt"
|
|
|
|
|
# fi
|
|
|
|
|
#fi
|
|
|
|
|
|
|
|
|
|
#Check, if dtoverlay=pwm is in place (just for OPENELEC)
|
|
|
|
|
if [ $PWM -eq 1 ] && [ $CPU_RPI -eq 1 ] && [ $OS_OPENELEC -eq 1 ]; then
|
|
|
|
|
PWMOK=`grep '^\dtoverlay=pwm' /flash/config.txt | wc -l`
|
|
|
|
|
if [ $PWMOK -ne 1 ]; then
|
|
|
|
|
mount -o remount,rw /flash
|
|
|
|
|
echo '---> Raspberry Pi with OpenELEC found, but PWM is not ready, we write "dtoverlay=pwm" to /flash/config.txt'
|
|
|
|
|
sed -i '$a dtoverlay=pwm' /flash/config.txt
|
|
|
|
|
mount -o remount,ro /flash
|
|
|
|
|
PWMREBOOTMESSAGE="echo Please reboot your OpenELEC, we inserted dtoverlay=pwm to /flash/config.txt"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
2016-03-12 03:49:19 +01:00
|
|
|
|
#Backup the .conf files, if present
|
|
|
|
|
echo '---> Backup Hyperion configuration(s), if present'
|
|
|
|
|
rm -f /tmp/*.json 2>/dev/null
|
|
|
|
|
if [ $OS_OPENELEC -eq 1 ]; then
|
|
|
|
|
cp -v /storage/.config/*.json /tmp 2>/dev/null
|
|
|
|
|
else cp -v /opt/hyperion/config/*.json /tmp 2>/dev/null
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Select the appropriate release
|
|
|
|
|
HYPERION_ADDRESS=https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy
|
|
|
|
|
if [ $CPU_RPI -eq 1 ]; then
|
|
|
|
|
HYPERION_RELEASE=$HYPERION_ADDRESS/hyperion_rpi.tar.gz
|
|
|
|
|
OE_DEPENDECIES=$HYPERION_ADDRESS/hyperion.deps.openelec-rpi.tar.gz
|
|
|
|
|
elif [ $CPU_IMX6 -eq 1 ]; then
|
|
|
|
|
HYPERION_RELEASE=$HYPERION_ADDRESS/hyperion_imx6.tar.gz
|
|
|
|
|
OE_DEPENDECIES=$HYPERION_ADDRESS/hyperion.deps.openelec-imx6.tar.gz
|
|
|
|
|
elif [ $CPU_WETEK -eq 1 ]; then
|
|
|
|
|
HYPERION_RELEASE=$HYPERION_ADDRESS/hyperion_wetek.tar.gz
|
|
|
|
|
OE_DEPENDECIES=$HYPERION_ADDRESS/hyperion.deps.openelec-rpi.tar.gz
|
2016-03-15 21:27:57 +01:00
|
|
|
|
elif [ $CPU_X32X64 -eq 1 ]; then
|
|
|
|
|
HYPERION_RELEASE=$HYPERION_ADDRESS/hyperion_x32x64.tar.gz
|
2016-03-13 20:04:42 +01:00
|
|
|
|
OE_DEPENDECIES=$HYPERION_ADDRESS/hyperion.deps.openelec-x32x64.tar.gz
|
2016-03-15 21:27:57 +01:00
|
|
|
|
#elif [ $CPU_X32 -eq 1 ]; then
|
|
|
|
|
# HYPERION_RELEASE=$HYPERION_ADDRESS/hyperion_x32.tar.gz
|
|
|
|
|
# OE_DEPENDECIES=$HYPERION_ADDRESS/hyperion.deps.openelec-x32x64.tar.gz
|
2015-01-24 23:42:22 +01:00
|
|
|
|
else
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo "---> Critical Error: Target platform unknown -> abort"
|
|
|
|
|
exit 1
|
2015-01-24 23:42:22 +01:00
|
|
|
|
fi
|
2016-03-12 03:49:19 +01:00
|
|
|
|
|
|
|
|
|
# Get and extract the Hyperion binaries and effects
|
|
|
|
|
echo '---> Downloading the appropriate Hyperion release'
|
|
|
|
|
if [ $OS_OPENELEC -eq 1 ]; then
|
|
|
|
|
# OpenELEC has a readonly file system. Use alternative location
|
|
|
|
|
echo '---> Downloading Hyperion OpenELEC release'
|
|
|
|
|
curl -# -L --get $HYPERION_RELEASE | tar -C /storage -xz
|
|
|
|
|
echo '---> Downloading Hyperion OpenELEC dependencies'
|
|
|
|
|
curl -# -L --get $OE_DEPENDECIES | tar -C /storage/hyperion/bin -xz
|
|
|
|
|
#set the executen bit (failsave)
|
|
|
|
|
chmod +x -R /storage/hyperion/bin
|
2014-01-05 15:47:47 +01:00
|
|
|
|
# modify the default config to have a correct effect path
|
|
|
|
|
sed -i 's:/opt:/storage:g' /storage/hyperion/config/hyperion.config.json
|
2013-11-24 13:37:30 +01:00
|
|
|
|
|
2016-03-12 03:49:19 +01:00
|
|
|
|
# /storage/.config is available as samba share. A symbolic link would not be working
|
|
|
|
|
false | cp -i /storage/hyperion/config/hyperion.config.json /storage/.config/hyperion.config.json 2>/dev/null
|
|
|
|
|
else
|
|
|
|
|
wget -nv $HYPERION_RELEASE -O - | tar -C /opt -xz
|
|
|
|
|
#set the executen bit (failsave)
|
|
|
|
|
chmod +x -R /opt/hyperion/bin
|
|
|
|
|
# create links to the binaries
|
2014-01-05 15:47:47 +01:00
|
|
|
|
ln -fs /opt/hyperion/bin/hyperiond /usr/bin/hyperiond
|
|
|
|
|
ln -fs /opt/hyperion/bin/hyperion-remote /usr/bin/hyperion-remote
|
2014-01-26 22:55:17 +01:00
|
|
|
|
ln -fs /opt/hyperion/bin/hyperion-v4l2 /usr/bin/hyperion-v4l2
|
2016-03-12 03:49:19 +01:00
|
|
|
|
ln -fs /opt/hyperion/bin/hyperion-dispmanx /usr/bin/hyperion-dispmanx 2>/dev/null
|
|
|
|
|
ln -fs /opt/hyperion/bin/hyperion-x11 /usr/bin/hyperion-x11 2>/dev/null
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
2016-03-12 03:49:19 +01:00
|
|
|
|
# Copy a link to the hyperion configuration file to /etc (-s for people who replaced the symlink with their config)
|
|
|
|
|
ln -s /opt/hyperion/config/hyperion.config.json /etc/hyperion.config.json 2>/dev/null
|
2013-11-24 13:37:30 +01:00
|
|
|
|
fi
|
2016-03-12 03:49:19 +01:00
|
|
|
|
|
|
|
|
|
# Restore backup of .conf files, if present
|
|
|
|
|
echo '---> Restore Hyperion configuration(s), if present'
|
|
|
|
|
if [ $OS_OPENELEC -eq 1 ]; then
|
|
|
|
|
mv -v /tmp/*.json /storage/.config/ 2>/dev/null
|
|
|
|
|
else mv -v /tmp/*.json /opt/hyperion/config/ 2>/dev/null
|
2014-01-05 15:47:47 +01:00
|
|
|
|
fi
|
2013-07-26 22:38:34 +02:00
|
|
|
|
|
2016-03-12 03:49:19 +01:00
|
|
|
|
# Copy the service control configuration to /etc/int (-n to respect user modified scripts)
|
2014-01-04 14:12:33 +01:00
|
|
|
|
if [ $USE_INITCTL -eq 1 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '---> Installing initctl script'
|
|
|
|
|
cp -n /opt/hyperion/init.d/hyperion.initctl.sh /etc/init/hyperion.conf 2>/dev/null
|
|
|
|
|
initctl reload-configuration
|
|
|
|
|
elif [ $OS_OPENELEC -eq 1 ]; then
|
2014-01-05 15:47:47 +01:00
|
|
|
|
# only add to start script if hyperion is not present yet
|
|
|
|
|
if [ `cat /storage/.config/autostart.sh 2>/dev/null | grep hyperiond | wc -l` -eq 0 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '---> Adding Hyperion to OpenELEC autostart.sh'
|
2014-01-05 15:47:47 +01:00
|
|
|
|
echo "/storage/hyperion/bin/hyperiond.sh /storage/.config/hyperion.config.json > /dev/null 2>&1 &" >> /storage/.config/autostart.sh
|
|
|
|
|
chmod +x /storage/.config/autostart.sh
|
|
|
|
|
fi
|
2016-03-22 01:01:54 +01:00
|
|
|
|
# only add hyperion-x11 to startup, if not found and x32x64 detected
|
|
|
|
|
if [ $CPU_X32X64 -eq 1 ] && [ `cat /storage/.config/autostart.sh 2>/dev/null | grep hyperion-x11 | wc -l` -eq 0 ]; then
|
|
|
|
|
echo '---> Adding Hyperion-x11 to OpenELEC autostart.sh'
|
|
|
|
|
echo "DISPLAY=:0.0 LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/storage/hyperion/bin /storage/hyperion/bin/hyperion-x11 </dev/null >/dev/null 2>&1 &" >> /storage/.config/autostart.sh
|
|
|
|
|
fi
|
2016-03-12 03:49:19 +01:00
|
|
|
|
elif [ $USE_SYSTEMD -eq 1 ]; then
|
|
|
|
|
echo '---> Installing systemd script'
|
|
|
|
|
#place startup script for systemd and activate
|
|
|
|
|
#Problem with systemd to enable symlinks - Bug? Workaround cp -n (overwrite never)
|
2016-03-22 01:01:54 +01:00
|
|
|
|
#Bad workaround for Jessie (systemd) users that used the official script for install
|
2016-03-12 03:49:19 +01:00
|
|
|
|
update-rc.d -f hyperion remove 2>/dev/null
|
|
|
|
|
rm /etc/init.d/hyperion 2>/dev/null
|
|
|
|
|
cp -n /opt/hyperion/init.d/hyperion.systemd.sh /etc/systemd/system/hyperion.service
|
|
|
|
|
systemctl -q enable hyperion.service
|
2016-03-22 01:01:54 +01:00
|
|
|
|
if [ $PWM -eq 1 ] && [ $OS_OSMC -eq 1 ]; then
|
|
|
|
|
echo '---> Modify systemd script for OSMC usage (PWM Support)'
|
|
|
|
|
# Wait until kodi is sarted (for xbmc checker) and FIX user in case it is wrong (need root for access to pwm!)!
|
|
|
|
|
sed -i '/After = mediacenter.service/d' /etc/systemd/system/hyperion.service
|
|
|
|
|
sed -i '/Unit/a After = mediacenter.service' /etc/systemd/system/hyperion.service
|
|
|
|
|
sed -i 's/User=osmc/User=root/g' /etc/systemd/system/hyperion.service
|
|
|
|
|
sed -i 's/Group=osmc/Group=root/g' /etc/systemd/system/hyperion.service
|
|
|
|
|
systemctl -q daemon-reload
|
|
|
|
|
elif [ $OS_OSMC -eq 1 ]; then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '---> Modify systemd script for OSMC usage'
|
|
|
|
|
# Wait until kodi is sarted (for xbmc checker) and replace user (for remote control through osmc)
|
|
|
|
|
sed -i '/After = mediacenter.service/d' /etc/systemd/system/hyperion.service
|
|
|
|
|
sed -i '/Unit/a After = mediacenter.service' /etc/systemd/system/hyperion.service
|
|
|
|
|
sed -i 's/User=root/User=osmc/g' /etc/systemd/system/hyperion.service
|
|
|
|
|
sed -i 's/Group=root/Group=osmc/g' /etc/systemd/system/hyperion.service
|
|
|
|
|
systemctl -q daemon-reload
|
|
|
|
|
fi
|
|
|
|
|
elif [ $USE_SERVICE -eq 1 ]; then
|
|
|
|
|
echo '---> Installing startup script in init.d'
|
|
|
|
|
# place startup script in init.d and add it to upstart (-s to respect user modified scripts)
|
|
|
|
|
ln -s /opt/hyperion/init.d/hyperion.init.sh /etc/init.d/hyperion 2>/dev/null
|
|
|
|
|
chmod +x /etc/init.d/hyperion
|
|
|
|
|
update-rc.d hyperion defaults 98 02
|
2013-11-24 13:37:30 +01:00
|
|
|
|
fi
|
2013-10-02 09:44:08 +02:00
|
|
|
|
|
|
|
|
|
# Start the hyperion daemon
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '---> Starting Hyperion'
|
|
|
|
|
if [ $OS_OPENELEC -eq 1 ]; then
|
|
|
|
|
/storage/.config/autostart.sh
|
|
|
|
|
elif [ $USE_INITCTL -eq 1 ]; then
|
2014-01-04 14:12:33 +01:00
|
|
|
|
/sbin/initctl start hyperion
|
2014-01-05 15:47:47 +01:00
|
|
|
|
elif [ $USE_SERVICE -eq 1 ]; then
|
2014-01-04 14:12:33 +01:00
|
|
|
|
/usr/sbin/service hyperion start
|
2016-03-12 03:49:19 +01:00
|
|
|
|
elif [ $USE_SYSTEMD -eq 1 ]; then
|
|
|
|
|
service hyperion start
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
#Hint for the user with path to config
|
|
|
|
|
if [ $OS_OPENELEC -eq 1 ];then
|
|
|
|
|
HINTMESSAGE="echo Path to your configuration -> /storage/.config/hyperion.config.json"
|
|
|
|
|
else HINTMESSAGE="echo Path to your configuration -> /etc/hyperion.config.json"
|
2014-01-04 14:12:33 +01:00
|
|
|
|
fi
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '*******************************************************************************'
|
|
|
|
|
echo 'Hyperion Installation/Update finished!'
|
|
|
|
|
echo 'Please get a new HyperCon version to benefit from the latest features!'
|
|
|
|
|
echo 'Create a new config file, if you encounter problems!'
|
|
|
|
|
$HINTMESSAGE
|
|
|
|
|
$REBOOTMESSAGE
|
2016-03-22 01:01:54 +01:00
|
|
|
|
$PWMREBOOTMESSAGE
|
2016-03-12 03:49:19 +01:00
|
|
|
|
echo '*******************************************************************************'
|
|
|
|
|
## Force reboot and prevent prompt if spi is added during a HyperCon Install
|
2016-03-22 01:01:54 +01:00
|
|
|
|
if ( [ "$HCInstall" = "1" ] && [ "$CPU_RPI" = "1" ] ) && ( [ "$SPIOK" = "0" ] || [ "$PWMOK" = "0" ] ); then
|
|
|
|
|
echo "Rebooting now, we added dtparam=spi=on and/or dtoverlay=pwm to config.txt"
|
2016-03-12 03:49:19 +01:00
|
|
|
|
reboot
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
#Prompt for reboot, if spi added to config.txt
|
2016-03-22 01:01:54 +01:00
|
|
|
|
if ( [ "$CPU_RPI" = "1" ] ) && ( [ "$SPIOK" = "0" ] || [ "$PWMOK" = "0" ] ); then
|
2016-03-12 03:49:19 +01:00
|
|
|
|
while true
|
|
|
|
|
do
|
|
|
|
|
echo -n "---> Do you want to reboot your Raspberry Pi now? (y or n) :"
|
|
|
|
|
read CONFIRM
|
|
|
|
|
case $CONFIRM in
|
|
|
|
|
y|Y|YES|yes|Yes) break ;;
|
|
|
|
|
n|N|no|NO|No)
|
|
|
|
|
echo "---> No reboot - you entered \"$CONFIRM\""
|
|
|
|
|
exit
|
|
|
|
|
;;
|
|
|
|
|
*) echo "-> Please enter only y or n"
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
echo "---> You entered \"$CONFIRM\". Rebooting now..."
|
|
|
|
|
reboot
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
exit 0
|