]> git.pld-linux.org Git - packages/fbset.git/blob - fbset.init
- unify devfs/non-devfs code, cleanup
[packages/fbset.git] / fbset.init
1 #!/bin/sh
2 # $Id$
3 #
4 # fbset:        Sets up fbcon video modes.
5 #
6 #
7 # chkconfig:    2345 69 31
8 # description:  fbset is a utility with which fbcons video modes can be read
9 #               and changed
10 #
11 # config:       /etc/sysconfig/fbset
12
13 # Source function library
14 . /etc/rc.d/init.d/functions
15
16 # Get service config
17 if [ -f /etc/sysconfig/fbset ]; then
18         . /etc/sysconfig/fbset
19 fi
20
21 function try_load
22 {
23         if [ -n "${FBMODULE}" ]; then
24                 _modprobe single $FBMODULE
25         else
26                 exit 0
27         fi
28 }
29
30 # Setting default depth
31 if [ -n "${DEPTH}" ]; then
32         DEPTH_options="-depth ${DEPTH}"
33 fi
34
35 if [ -z "${FBDEV_NUM}" ]; then
36         FBDEV_NUM=0
37 fi
38
39 # See how we were called.
40 case "$1" in
41   start)
42         # Check if service is already running?
43         if [ ! -f /var/lock/subsys/fbset ]; then
44                 
45                 # Check if we have framebuffer in kernel.
46                 if [ -f /proc/fb ]; then
47                         # /proc files show as files with size=0, this is a workaround.
48                         cat /proc/fb | grep -q "." || try_load
49                 else
50                         # if not, then try to load specified kernel module
51                         try_load
52                 fi
53
54                 if [ -n "${FBMODE_default}" ]; then
55                         show "Setting default video mode"
56                         busy
57                         
58                         # check if devfs (workaround: -a option don't work at all)
59                         if [ -d /dev/vc ]; then
60                                 DEVICES="`ls /dev/vc/* | sed 's|/dev/vc/||g'`"
61                                 FBDEV=`echo /dev/fb/${FBDEV_NUM}`
62                         else
63                                 DEVICES="`cat /etc/inittab | grep '^[0-9]*:' | cut -f1 -d :`"
64                                 FBDEV=`echo /dev/fb${FBDEV_NUM}`
65                         fi
66
67                         for cons in "$DEVICES"; do
68                                 /usr/bin/open -c $cons -- /usr/sbin/fbset -fb $FBDEV ${DEPTH_options} $FBMODE_default
69                         done
70                         
71                         deltext
72                         ok
73                 fi
74                 touch /var/lock/subsys/fbset
75         else
76                 msg_already_running "fbset"
77                 exit 1
78         fi
79         ;;
80   stop)
81         if [ -f /var/lock/subsys/fbset ]; then
82                 rm -f /var/lock/subsys/fbset
83         else
84                 msg_not_running fbset
85         fi
86         ;;
87   status)
88         # Check if we have framebuffer in kernel.
89         if [ -f /proc/fb ]; then
90                 # /proc files show as files with size=0, this is a workaround.
91                 cat /proc/fb | grep -q "." || exit 0
92                 echo "Frame buffer present."
93         fi
94         ;;
95   restart|reload)
96         $0 stop
97         $0 start
98         ;;
99   *)
100         msg_usage "$0 {start|stop|status|restart|reload}"
101         exit 1
102 esac
103
104 exit 0
This page took 0.062798 seconds and 4 git commands to generate.