Bump to revision 4

making use of extended functionality of addConf and exep
This commit is contained in:
2019-05-27 15:02:38 +02:00
parent e37f6269ee
commit ddbc4657f7
4 changed files with 12 additions and 14 deletions

View File

@@ -25,7 +25,7 @@ step_2() {
step_3_info() { echo "Add $toolName user ($toolUser)"; }
step_3() {
exe id -u $toolUser >>/dev/null 2>&1
exep "id -u $toolUser >>/dev/null 2>&1"
if [ $? -eq 0 ] ; then
echo
echo "User $toolUser exists."
@@ -90,15 +90,15 @@ step_5() {
step_6_info() { echo "Increase raspberry pi GPU memory to 320"; }
step_6() {
exe grep -e '^[ ]*gpu_mem' "$bootConfigLoc" >>/dev/null 2>&1
if [ -f "$bootConfigLoc" ] && [ $? -ne 0 ] ; then
exep "grep -e '^[ ]*gpu_mem' \"$bootConfigLoc\" >>/dev/null 2>&1"
if [ $? -ne 0 ] && [ -f "$bootConfigLoc" ] ; then
# attach settings to raspberry boot configuration
exe mount -o remount,rw /boot
echo -n "Modifying boot configuration ... "
echo "$bootConfig" >> "$bootConfigLoc" && echo "ok"
addConf -a "$bootConfig" "$bootConfigLoc"
exe mount -o remount,ro /boot
else
echo "[ERROR] modifying boot configuration. Kodi may not work properly"
# add to missing conf
addConf -m "$bootConfig" "$bootConfigLoc"
fi
}
@@ -127,5 +127,5 @@ step_7() {
esac
}
VERSION_SEQREV=3
VERSION_SEQREV=4
. sequencer.sh