blob: b4825418d550d418b88d163cda0826506030ce28 (
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
40
41
42
43
44
45
46
47
|
#!/sbin/runscript
depend() {
before xdm
}
# Credit to David Leverton for this function which handily maps a bash array
# structure to positional parameters so existing configs work :)
# We'll deprecate arrays at some point though.
_get_array() {
if [ -n "${BASH}" ] ; then
case "$(declare -p "$1" 2>/dev/null)" in
"declare -a "*)
echo "set -- \"\${$1[@]}\""
return
;;
esac
fi
echo "eval set -- \"\$$1\""
}
checkconfig() {
if [[ -z "${replace[*]}" ]]; then
eerror "You need to have at least one resolution to replace"
eerror "/etc/conf.d/915resolution"
return 1
fi
[[ "${log}" && -f "${log}" ]] && echo > "${log}"
return 0
}
start() {
checkconfig || return 1
ebegin "Patching video BIOS with new video modes."
eval $(_get_array replace)
for mode in "$@"; do
915resolution ${mode} >> ${log:-/dev/null}; retval=$?
done
eend ${retval}
}
|