From bcbdb0ed1371ee359bc3da948690c2a2d6f597db Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 11 Jan 2008 19:19:33 +0000 Subject: Add wscons script. We still need to convert this to a conf.d format. --- init.d.NetBSD/ttys | 2 +- init.d.NetBSD/wscons | 99 +++++++++++++++++++++++++++++++++++++++++++++++ runlevels/Makefile.NetBSD | 2 +- 3 files changed, 101 insertions(+), 2 deletions(-) create mode 100644 init.d.NetBSD/wscons diff --git a/init.d.NetBSD/ttys b/init.d.NetBSD/ttys index c8e9d87..59b6674 100644 --- a/init.d.NetBSD/ttys +++ b/init.d.NetBSD/ttys @@ -1,5 +1,5 @@ #!/sbin/runscript -# Copyright 2007 Roy Marples +# Copyright 2008 Roy Marples # All rights reserved. Released under the 2-clause BSD license. start() diff --git a/init.d.NetBSD/wscons b/init.d.NetBSD/wscons new file mode 100644 index 0000000..7859f5f --- /dev/null +++ b/init.d.NetBSD/wscons @@ -0,0 +1,99 @@ +#!/sbin/runscript +# Copyright 2008 Roy Marples +# All rights reserved. Released under the 2-clause BSD license. + +depend() +{ + need localmount +} + +start() +{ + wscfg=/usr/sbin/wsconscfg + wsfld=/usr/sbin/wsfontload + wsctl=/sbin/wsconsctl + config=/etc/wscons.conf + + # args mean: + # screen idx scr emul + # font name width height enc file + while read type arg1 arg2 arg3 arg4 arg5; do + case "${type}" in + \#*|"") + continue + ;; + + font) + cmd=${wsfld} + [ "${arg2}" != "-" ] && cmd="${cmd} -w ${arg2}" + [ "${arg3}" != "-" ] && cmd="${cmd} -h ${arg3}" + [ "${arg4}" != "-" ] && cmd="${cmd} -e ${arg4}" + cmd="${cmd} -N ${arg1} ${arg5}" + eval "${cmd}" + ;; + + screen) + cmd=${wscfg} + [ "${arg2}" != "-" ] && cmd="${cmd} -t ${arg2}" + [ "${arg3}" != "-" ] && cmd="${cmd} -e ${arg3}" + cmd="${cmd} ${arg1}" + eval "${cmd}" + ;; + + keyboard) + cmd=${wscfg} + case "${arg1}" in + -|auto) + cmd="${cmd} -k" + ;; + *) + cmd="${cmd} -k ${arg1}" + ;; + esac + ${cmd} + ;; + + encoding) + eval ${wsctl} -w "\"encoding=${arg1}\"" + ;; + + mapfile) + local entry= + while read entry; do + case "${entry}" in + \#*|"") + continue + ;; + *) + cmd="${wsctl} -w \"map+=${entry}\"" + eval "${cmd} >/dev/null" + ;; + esac + done < "${arg1}" + ;; + + mux) + eval "${wscfg} -m ${arg1}" + ;; + + setvar) + case "${arg1}" in + keyboard) + cmd="${wsctl} -kw ${arg2}" + ;; + display) + cmd="${wsctl} -dw ${arg2}" + ;; + mouse) + cmd="${wsctl} -mw ${arg2}" + ;; + *) + cmd="${wsctl} -w ${arg1}" + ;; + esac + eval "${cmd}" + ;; + + esac + done < "${config}" +} diff --git a/runlevels/Makefile.NetBSD b/runlevels/Makefile.NetBSD index 02a9903..ad61d8f 100644 --- a/runlevels/Makefile.NetBSD +++ b/runlevels/Makefile.NetBSD @@ -1 +1 @@ -BOOT+= ttys +BOOT+= ttys wscons -- cgit v1.2.3