Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 17476 Details for
Bug 27216
consolefont script sets only tty1 in kernel 2.6.0-test4
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
new consolefont init script (with kbd patch)
consolefont (text/plain), 2.02 KB, created by
Genady Okrain
on 2003-09-10 21:46:12 UTC
(
hide
)
Description:
new consolefont init script (with kbd patch)
Filename:
MIME Type:
Creator:
Genady Okrain
Created:
2003-09-10 21:46:12 UTC
Size:
2.02 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2003 Gentoo Technologies, Inc. ># Distributed under the terms of the GNU General Public License v2 ># $Header: /home/cvsroot/gentoo-src/rc-scripts/init.d/consolefont,v 1.16 2003/08/10 21:31:36 azarah Exp $ > > >depend() { > need localmount >} > >start() { > local retval=1 > if [ -n "${CONSOLEFONT}" ] > then > # Getting additional parameters, ie consoletranslation > local param="" > local x="" > if [ -n "${CONSOLETRANSLATION}" ] > then > param="-m ${CONSOLETRANSLATION}" > fi > > # Actually setting font > if [ -x /usr/bin/consolechars ] > then > # > # Console-Tools section: > # > > ebegin "Setting user font" > for x in 1 2 3 4 5 6 7 8 9 10 > do > # Using DEVFS ? > if [ -e /dev/.devfsd ] > then > /usr/bin/consolechars -f ${CONSOLEFONT} ${param} \ > --tty=/dev/vc/${x} &>/dev/null > retval=$? > else > /usr/bin/consolechars -f ${CONSOLEFONT} ${param} \ > --tty=/dev/tty${x} &>/dev/null > retval=$? > fi > done > > elif [ -x /usr/bin/setfont ] > then > # > # Kbd Section > # > > ebegin "Setting user font" > for x in 1 2 3 4 5 6 7 8 9 10 > do > # Using DEVFS ? > if [ -e /dev/.devfsd ] > then > /usr/bin/setfont ${CONSOLEFONT} ${param} -c /dev/vc/${x} >/dev/null > retval=$? > else > usr/bin/setfont ${CONSOLEFONT} ${param} -c /dev/tty${x}>/dev/null > retval=$? > fi > done > > for x in 1 2 3 4 5 6 7 8 9 10 > do > # Using DEVFS ? > if [ -e /dev/.devfsd ] > then > echo -ne "\033(K" > /dev/vc/${x} > retval=$? > else > echo -ne "\033(K" > /dev/tty${x} > retval=$? > fi > done > > else > # No console program installed! > eend 1 "The setfont/consolechars executable not found" > return 1 > fi > > eend $retval "Failed to set user font" > else > ebegin "Using the default console font" > eend 0 > fi > > return $retval >} > > ># vim:ts=4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 27216
:
17470
|
17471
| 17476 |
20074
|
20084