From 4ada46d528c75c53523a0325560abcaa995242e2 Mon Sep 17 00:00:00 2001 From: Peter Steenbergen Date: Sat, 2 Feb 2019 11:56:11 +0100 Subject: [PATCH] MycroftOS: Remove Splash init script as it doesn't work with systemd - Need to be recreated utilizing systemd --- .../rootfs-overlay/etc/init.d/S00asplash | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100755 buildroot-external/rootfs-overlay/etc/init.d/S00asplash diff --git a/buildroot-external/rootfs-overlay/etc/init.d/S00asplash b/buildroot-external/rootfs-overlay/etc/init.d/S00asplash deleted file mode 100755 index 2c52ed5f..00000000 --- a/buildroot-external/rootfs-overlay/etc/init.d/S00asplash +++ /dev/null @@ -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 $?