#!/bin/bash # # /etc/rc.d/lircd: start/stop/restart 915 resolution # . /etc/915resolution.conf case "$1" in start) echo "Patching the VBIOS.." /usr/sbin/915resolution $MODE $RESOLUTION >/dev/null ;; stop) #skip ;; restart) $0 stop $0 start ;; *) echo "Usage: $0 start|stop|restart" exit 1 ;; esac