scripts: move migration script away from control scripts

Origin commit data
------------------
Branch: ni/coolstream
Commit: 58f91648c0
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-26 (Sun, 26 Sep 2021)

Origin message was:
------------------
- scripts: move migration script away from control scripts

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2021-09-26 20:25:38 +02:00
parent 53a13dd54f
commit 4dd533048a
5 changed files with 6 additions and 10 deletions

View File

@@ -2,13 +2,15 @@ EXTRA_DIST = \
backup.sh backup.sh.in \
restore.sh restore.sh.in \
backup_flash.sh backup_flash.sh.in \
restore_flash.sh restore_flash.sh.in
restore_flash.sh restore_flash.sh.in \
migration.sh migration.sh.in
installdir = $(bindir)
install_SCRIPTS = \
backup.sh \
restore.sh \
migration.sh \
wakeup.sh \
install.sh

View File

@@ -0,0 +1,64 @@
#!/bin/sh
cd @CONFIGDIR@
if [ -e neutrino.conf ]; then
# remove NG leftovers
sed -i 's|ng_netfs_\(.*\)|netfs_\1|' neutrino.conf
# webradio_usr.xml was moved
sed -i "s|@CONFIGDIR@/webradio_usr.xml|@WEBRADIODIR_VAR@/webradio_usr.xml|" neutrino.conf
mkdir -p @WEBRADIODIR_VAR@/
if [ -e @CONFIGDIR@/webradio_usr.xml ]; then
mv @CONFIGDIR@/webradio_usr.xml @WEBRADIODIR_VAR@/
fi
# webtv_usr.xml was moved
sed -i "s|@CONFIGDIR@/webtv_usr.xml|@WEBTVDIR_VAR@/webtv_usr.xml|" neutrino.conf
mkdir -p @WEBTVDIR_VAR@/
if [ -e @CONFIGDIR@/webtv_usr.xml ]; then
mv @CONFIGDIR@/webtv_usr.xml @WEBTVDIR_VAR@/
fi
# remove all old glcd_ keywords; neutrino will add the new ones
if ! grep -q glcd_foreground_color neutrino.conf ; then
sed -i "/^glcd_/d" neutrino.conf
fi
sort neutrino.conf > neutrino.sort
mv neutrino.sort neutrino.conf
fi
if [ -e zapit/frontend.conf ]; then
# uni_qrg was renamed to uni_freq
sed -i "s|_uni_qrg=|_uni_freq=|g" @CONFIGDIR@/zapit/frontend.conf
fi
controlscripts="\
audioplayer.start \
audioplayer.end \
deepstandby.on \
deepstandby.off \
inactivity.on \
movieplayer.start \
movieplayer.end \
neutrino.start \
pictureviewer.start \
pictureviewer.end \
recording.timer \
recording.start \
recording.end \
scan.start \
scan.stop \
standby.on \
standby.off \
"
mkdir -p @CONTROLDIR_VAR@/
for controlscript in $controlscripts; do
if [ -e $controlscript ]; then
mv $controlscript @CONTROLDIR_VAR@/
fi
done
rm -f migration.sh
rm -f flash.start