As /etc/sysconfig and /etc/rc.i386 is now, you can't modify the syscons
bell type on boot. Slightly annoying when your system doesn't have a speaker. This adds a `keybell' frob for setting it. Closes PR#2519 Submitted-By: Jonathan Mini <mini@hydrogen.nike.efn.org>
This commit is contained in:
parent
0fb36a0fa1
commit
4894a222c0
@ -44,6 +44,11 @@ if [ "X${keyrate}" != X"NO" ]; then
|
||||
echo -n ' keyrate'; kbdcontrol <${kbddev} -r ${keyrate}
|
||||
fi
|
||||
|
||||
# bell style
|
||||
if [ "X${keybell}" != X"NO" ]; then
|
||||
echo -n ' keybell'; kbdcontrol <${kbddev} -b ${keybell}
|
||||
fi
|
||||
|
||||
# change function keys
|
||||
if [ "X${keychange}" != X"NO" ]; then
|
||||
echo -n " keychange"
|
||||
|
@ -44,6 +44,11 @@ if [ "X${keyrate}" != X"NO" ]; then
|
||||
echo -n ' keyrate'; kbdcontrol <${kbddev} -r ${keyrate}
|
||||
fi
|
||||
|
||||
# bell style
|
||||
if [ "X${keybell}" != X"NO" ]; then
|
||||
echo -n ' keybell'; kbdcontrol <${kbddev} -b ${keybell}
|
||||
fi
|
||||
|
||||
# change function keys
|
||||
if [ "X${keychange}" != X"NO" ]; then
|
||||
echo -n " keychange"
|
||||
|
@ -28,6 +28,9 @@ keychange=NO
|
||||
# Desired cursor type {normal|blink|destructive}, NO if no change
|
||||
cursor=NO
|
||||
|
||||
# Desired cursor type {duration.pitch|normal|visual}, NO if no change
|
||||
keybell=NO
|
||||
|
||||
# Choose screen map from /usr/share/syscons/scrnmaps/* (or NO for none)
|
||||
scrnmap=NO
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user