blob: f95a0f53dd87c51d33a1f72e54e27f5b43f49a4a (
plain) (
blame)
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
|
menuconfig HW
bool "Hardware support"
default y
if HW
choice
prompt "RTLSDR library"
help
RTLSDR library
config HW_LIB_ORIG
bool "librtlsdr original version"
default y
config HW_LIB_R820T
bool "libr820t for of librtlsdr by radiola"
default n
endchoice
choice
prompt "Audio"
config HW_ALSA
bool "Linux ALSA"
default y
depends on OS_LINUX
config HW_NO_AUDIO
bool "No audio support"
default n
endchoice
endif
|