blob: 133604d875856a9d2626878d2d253c4286eae0b3 (
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
|
# Options to start the Hurd console.
# Set this to 'true' to run the Hurd console on bootup.
ENABLE='false'
# The display driver, mandatory. Either `vga' or `ncursesw'.
DISPLAY='-d vga'
# The keyboard driver, mandatory. Either `pc_kbd' or `xkb' from the
# console-driver-xkb package.
KBD='-d pc_kbd'
# The alternative xkb keyboard driver, as provided by the
# console-driver-xkb package. It uses X11 style keymaps and supports
# different keymaps. Possible options are:
# --keymap: The keymap to use. By default en_US is used. Examples of
# some other keymaps are: fr, us, de, dvorak.
# --keymapfile: The file that hold the descriptions of the default
# keymaps file. This file holds the description of all keymaps. This
# path should be relative to the path set by `xkbdir'. By default
# "keymap/xfree86" is used.
# --xkbdir: The root directory of the xkb configuration, by default
# this is /etc/X11/xkb.
#KBD='-d xkb'
# 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'
|