core/chakra-hardware-detection/etc/rc.d/xorg-config

25 lines
271 B
Plaintext
Raw Normal View History

2010-05-22 06:16:47 +08:00
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
stat_busy "Configuring video driver"
/opt/chakra/bin/xorg-config.sh
stat_done
;;
stop)
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac