Created
December 8, 2015 13:28
-
-
Save kokoye2007/43541aa68c08851934f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
### BEGIN INIT INFO | |
### [email protected] | |
# Provides: asplashscreen | |
# Required-Start: | |
# Required-Stop: | |
# Should-Start: | |
# Default-Start: S | |
# Default-Stop: | |
# Short-Description: Show custom splashscreen | |
# Description: Show custom splashscreen | |
### END INIT INFO | |
do_start () { | |
omxplayer /home/pi/boot.mov & | |
exit 0 | |
} | |
case "$1" in | |
start|"") | |
do_start | |
;; | |
restart|reload|force-reload) | |
echo "Error: argument '$1' not supported" >&2 | |
exit 3 | |
;; | |
stop) | |
# No-op | |
;; | |
status) | |
exit 0 | |
;; | |
*) | |
echo "Usage: asplashscreen [start|stop]" >&2 | |
exit 3 | |
;; | |
esac | |
: |
Author
kokoye2007
commented
Dec 8, 2015
- sudo vi /boot/cmdline.txt
- Add quiet to the end of the line.
- sudo vi /etc/init.d/pisplash
- add this script
- sudo chmod a+x /etc/init.d/pisplash
- sudo insserv /etc/init.d/pisplash
- save your video
- /home/pi/boot.mov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment