blob: db67f3fa119be025a1a13138af564093ac4ec120 (
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
|
# Options to start the Hurd console.
# Set this to 'false' to avoid running the Hurd console on bootup.
ENABLE='true'
# The display driver, mandatory. Either `vga' or `ncursesw'. In the case of
# VGA, -f /some/where/file.bdf can be appended to load a specific font.
DISPLAY='-d vga'
# The keyboard driver, mandatory. Either `pc_kbd' or `xkb' from the
# console-driver-xkb package.
KBD='-d pc_kbd'
# this is bogus for a lot of cases, but the best we can do for now.
if [ -f /etc/default/keyboard ]
then
. /etc/default/keyboard
fi
[ -z "$XKBLAYOUT" ] || KBD="$KBD --keymap $XKBLAYOUT"
# The keyboard repeater. Required for running X11.
KBD_REPEAT='--repeat=kbd'
# The mouse driver. Optional.
MOUSE='-d pc_mouse --protocol=ps/2'
# The mouse repeater. Required for running X11.
MOUSE_REPEAT='--repeat=mouse'
# The pc speaker. Optional.
#SPEAKER='-d generic_speaker'
|