MycroftOS: Remove Splash init script as it doesn't work with systemd

- Need to be recreated utilizing systemd
This commit is contained in:
Peter Steenbergen 2019-02-02 11:56:11 +01:00
parent 785e3a9e09
commit 4ada46d528
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
#!/bin/sh
#
# Loading boot splash
#
start() {
printf "Loading boot splash ..."
cat /dev/zero 1> /dev/fb0 2>/dev/null
fbv -f -d 1 /opt/mycroft/splash/boot.png > /dev/null 2>&1
echo "[OK]"
}
case "$1" in
start)
start
;;
*)
echo "Usage: $0 {start}"
exit 1
esac
exit $?