Blame view

buildroot/buildroot-2016.08.1/package/gpsd/Config.in 4.82 KB
6b13f685e   김민수   BSP 최초 추가
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
  comment "gpsd needs a toolchain w/ threads, dynamic library"
  	depends on BR2_USE_MMU
  	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
  
  menuconfig BR2_PACKAGE_GPSD
  	bool "gpsd"
  	# Uses fork()
  	depends on BR2_USE_MMU
  	depends on BR2_TOOLCHAIN_HAS_THREADS
  	# Always tries to build a shared library
  	depends on !BR2_STATIC_LIBS
  	help
  	  gpsd is a service daemon that monitors one or more GPSes or AIS
  	  receivers attached to a host computer through serial or USB ports,
  	  making all data on the location/course/velocity of the sensors
  	  available to be queried on TCP port 2947 of the host computer.
  
  	  The D-Bus interface is included if dbus-glib is enabled.
  
  	  http://www.catb.org/gpsd/
  
  if BR2_PACKAGE_GPSD
  
  config BR2_PACKAGE_GPSD_DEVICES
  	string "Where to look for GPSes"
  	default "/dev/ttyS1"
  
  comment "Features"
  
  config BR2_PACKAGE_GPSD_CLIENT_DEBUG
  	bool "client debugging support"
  
  config BR2_PACKAGE_GPSD_OLDSTYLE
  	bool "oldstyle (pre-JSON) protocol support"
  
  config BR2_PACKAGE_GPSD_PROFILING
  	bool "profiling support"
  	depends on BR2_TOOLCHAIN_USES_GLIBC
  	depends on !BR2_aarch64
  
  comment "profiling support not available with uClibc-based toolchain"
  	depends on !BR2_TOOLCHAIN_USES_GLIBC
  
  config BR2_PACKAGE_GPSD_NTP_SHM
  	bool "NTP time hinting support"
  
  config BR2_PACKAGE_GPSD_PPS
  	bool "PPS time syncing support"
  	select BR2_PACKAGE_GPSD_NTP_SHM
  
  config BR2_PACKAGE_GPSD_USER
  	bool "GPSD privilege revocation user"
  
  config BR2_PACKAGE_GPSD_USER_VALUE
  	string "user to run as"
  	default "nobody"
  	depends on BR2_PACKAGE_GPSD_USER
  
  config BR2_PACKAGE_GPSD_GROUP
  	bool "GPSD privilege revocation group"
  
  config BR2_PACKAGE_GPSD_GROUP_VALUE
  	string "group to run as"
  	default "nobody"
  	depends on BR2_PACKAGE_GPSD_GROUP
  
  config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED
  	bool "compile with fixed serial port speed"
  
  config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED_VALUE
  	int "serial port speed"
  	default "9600"
  	depends on BR2_PACKAGE_GPSD_FIXED_PORT_SPEED
  
  config BR2_PACKAGE_GPSD_MAX_CLIENT
  	bool "compile with limited maximum clients"
  
  config BR2_PACKAGE_GPSD_MAX_CLIENT_VALUE
  	int "maximum number of clients"
  	default "10"
  	depends on BR2_PACKAGE_GPSD_MAX_CLIENT
  
  config BR2_PACKAGE_GPSD_MAX_DEV
  	bool "compile with maximum allowed devices"
  
  config BR2_PACKAGE_GPSD_MAX_DEV_VALUE
  	int "maximum allowed devices"
  	default "2"
  	depends on BR2_PACKAGE_GPSD_MAX_DEV
  
  config BR2_PACKAGE_GPSD_RECONFIGURE
  	bool "allow gpsd to change device settings"
  	default y
  
  config BR2_PACKAGE_GPSD_CONTROLSEND
  	bool "allow gpsctl/gpsmon to change device settings"
  	default y
  
  config BR2_PACKAGE_GPSD_SQUELCH
  	bool "squelch gpsd_report and gpsd_hexdump to save cpu"
  
  comment "Protocols"
  
  config BR2_PACKAGE_GPSD_AIVDM
  	bool "Aivdm"
  	help
  	  Aivdm support
  
  config BR2_PACKAGE_GPSD_ASHTECH
  	bool "Ashtech"
  	help
  	  Ashtech support
  
  config BR2_PACKAGE_GPSD_EARTHMATE
  	bool "Earthmate"
  	help
  	  DeLorme EarthMate Zodiac support
  
  config BR2_PACKAGE_GPSD_EVERMORE
  	bool "EverMore"
  	help
  	  EverMore binary support
  
  config BR2_PACKAGE_GPSD_FURY
  	bool "Fury"
  	help
  	  Jackson Labs Fury and Firefly support
  
  config BR2_PACKAGE_GPSD_FV18
  	bool "FV-18"
  	help
  	  San Jose Navigation FV-18 support
  
  config BR2_PACKAGE_GPSD_GARMIN
  	bool "Garmin (kernel)"
  	help
  	  Garmin kernel driver support
  
  config BR2_PACKAGE_GPSD_GARMIN_SIMPLE_TXT
  	bool "Garmin (simple text)"
  	help
  	  Garmin Simple Text support
  
  config BR2_PACKAGE_GPSD_GEOSTAR
  	bool "Geostar"
  	help
  	  Geostar Protocol support
  
  config BR2_PACKAGE_GPSD_GPSCLOCK
  	bool "GPSClock"
  	help
  	  GPSClock support
  
  config BR2_PACKAGE_GPSD_ITRAX
  	bool "iTrax"
  	help
  	  iTrax support
  
  config BR2_PACKAGE_GPSD_MTK3301
  	bool "MTK-3301"
  	help
  	  Mediatek MTK-3301 support
  
  config BR2_PACKAGE_GPSD_NAVCOM
  	bool "Navcom"
  	help
  	  Navcom binary support
  
  config BR2_PACKAGE_GPSD_NMEA
  	bool "NMEA"
  	default y
  	help
  	  Generic NMEA support
  
  config BR2_PACKAGE_GPSD_NMEA2000
  	bool "NMEA2000"
  	select BR2_PACKAGE_GPSD_NAVCOM
  	select BR2_PACKAGE_GPSD_AIVDM
  	help
  	  NMEA2000/CAN support
  
  config BR2_PACKAGE_GPSD_NTRIP
  	bool "NTRIP"
  	help
  	  NTRIP support
  
  config BR2_PACKAGE_GPSD_OCEANSERVER
  	bool "OceanServer"
  	help
  	  OceanServer Digital Compass support
  
  config BR2_PACKAGE_GPSD_ONCORE
  	bool "OnCore"
  	help
  	  OnCore support
  
  config BR2_PACKAGE_GPSD_RTCM104V2
  	bool "RTCM104 v2"
  	help
  	  RTCM104 v2 support
  
  config BR2_PACKAGE_GPSD_RTCM104V3
  	bool "RTCM104 v3"
  	help
  	  RTCM104 v3 support
  
  config BR2_PACKAGE_GPSD_SIRF
  	bool "SiRF"
  	help
  	  SiRF binary support
  
  config BR2_PACKAGE_GPSD_SUPERSTAR2
  	bool "SuperStarII"
  	help
  	  Novatel SuperStarII binary support
  
  config BR2_PACKAGE_GPSD_TRIMBLE_TSIP
  	bool "Trimble TSIP"
  	help
  	  Trimble TSIP support
  
  config BR2_PACKAGE_GPSD_TRIPMATE
  	bool "TripMate"
  	help
  	  Delorme TripMate support
  
  config BR2_PACKAGE_GPSD_TRUE_NORTH
  	bool "True North Technologies"
  	help
  	  True North Technologies support
  
  config BR2_PACKAGE_GPSD_UBX
  	bool "UBX"
  	help
  	  uBlox UBX binary support
  
  endif