forked from ElvishArtisan/rivendell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rivendell.sys
67 lines (60 loc) · 1.69 KB
/
rivendell.sys
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
## Path: Applications/Rivendell
## Description: Configure the Rivendell system daemons.
## Type: yesno
## Default no
#
# Start the MeasurementComputing GPIO driver?
#
GPIO_START="no"
## Type: yesno
## Default no
#
# Start the AudioScience HPI driver?
#
HPI_START="no"
## Type: yesno
## Default no
#
# Start the Axia LiveWire driver?
#
LIVEWIRE_START="no"
## Type: yesno
## Default no
#
# Start jackd?
# (NOTE: this option is here for backwards compatibity only!
# A much better method for controlling JACK is to set the 'JACK_START_SERVER'
# environmental variable and use '/etc/jackdrc' for configuration. See
# the jackd man page for details.)
#
JACK_START="no"
## Type: integer
## Default 48000
#
# Set the sample rate of the jackd daemon.
# (NOTE: this option is here for backwards compatibity only!
# A much better method for controlling JACK is to set the 'JACK_START_SERVER'
# environmental variable and use '/etc/jackdrc' for configuration. See
# the jackd man page for details.)
#
JACK_SAMPLE_RATE="48000"
## Type: string
## Default hw:0
#
# Set the ALSA device for the jackd daemon to use.
# (NOTE: this option is here for backwards compatibity only!
# A much better method for controlling JACK is to set the 'JACK_START_SERVER'
# environmental variable and use '/etc/jackdrc' for configuration. See
# the jackd man page for details.)
#
JACK_ALSA_DEVICE="hw:0"
## Type: yesno
## Default no
#
# Use realtime scheduling for audio threads.
# (NOTE: this option is here for backwards compatibity only!
# A much better method for controlling JACK is to set the 'JACK_START_SERVER'
# environmental variable and use '/etc/jackdrc' for configuration. See
# the jackd man page for details.)
#
JACK_USE_REALTIME="no"