mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 10:13:03 +01:00
585 B
Executable File
585 B
Executable File
#! /bin/sh
DESC=irattach
case "$1" in start) echo -n "Starting $DESC: " irattach /dev/ttyS1 > /dev/null 2>&1 & echo "$NAME." ;; stop) echo -n "Stopping $DESC: " killall irattach > /dev/null 2>&1 echo "$NAME." ;; restart|force-reload) echo -n "Restarting $DESC: " irattach /dev/ttyS1 > /dev/null 2>&1 & sleep 1 killall irattach > /dev/null 2>&1 echo "$NAME." ;; *) N=/etc/init.d/$NAME echo "Usage: $N {start|stop|restart|force-reload}" >&2 exit 1 ;; esac