blob: 8207b9f7e9cb616454885dcfc3842c3327104bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
# PROVIDE: afbinit
# REQUIRE: devfs
#
# Available configuration variables for afbinit are:
#
# afbinit_enable (bool): Set to "YES" to enable afbinit.
# Defaults to "NO".
#
# Add at least the following line to /etc/rc.conf or /etc/rc.conf.local to
# enable afbinit:
#
# afbinit="YES"
#
. /etc/rc.subr
name="afbinit"
rcvar=afbinit_enable
start_cmd="afbinit_startcmd"
afbinit_startcmd()
{
if [ ! -r %%DATADIR%%/afb.ucode ]; then
err 1 '%%DATADIR%%/afb.ucode is not readable.'
fi
for fb in /dev/fb[0-7]; do
%%PREFIX%%/sbin/afbinit ${fb} %%DATADIR%%/afb.ucode
done
}
load_rc_config $name
: ${afbinit_enable="NO"}
run_rc_command "$1"
|