hardknott: xorg-driver: sync with meta-imx hardknott-5.10.72-2.2.0 branch
This folder only contained a leftover file, so remove it Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
parent
4a824690cf
commit
d057886358
|
|
@ -1,42 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
### BEGIN INIT INFO
|
|
||||||
# Provides: rc.autohdmi
|
|
||||||
# Required-Start: $all
|
|
||||||
# Required-Stop:
|
|
||||||
# Default-Start: 2 3 4 5
|
|
||||||
# Default-Stop:
|
|
||||||
### END INIT INFO
|
|
||||||
|
|
||||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
|
||||||
|
|
||||||
# Source function library.
|
|
||||||
. /etc/init.d/functions
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
echo -n "Starting autohdmi: "
|
|
||||||
export DISPLAY=:0
|
|
||||||
autohdmi &
|
|
||||||
echo
|
|
||||||
exit 0
|
|
||||||
;;
|
|
||||||
reload|force-reload)
|
|
||||||
echo "Error: argument '$1' not supported" >&2
|
|
||||||
exit 3
|
|
||||||
;;
|
|
||||||
stop)
|
|
||||||
echo -n "Shutting down autohdmi: "
|
|
||||||
killproc autohdmi
|
|
||||||
echo
|
|
||||||
;;
|
|
||||||
restart)
|
|
||||||
echo -n "Restarting autohdmi: "
|
|
||||||
$0 stop
|
|
||||||
$0 start
|
|
||||||
echo
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Usage: $0 start|stop" >&2
|
|
||||||
exit 3
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
Loading…
Reference in New Issue