forked from sbabic/swupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
358 lines (283 loc) · 8.26 KB
/
Kconfig
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
#
mainmenu "Swupdate Configuration"
config HAVE_DOT_CONFIG
bool
default y
config HAVE_LUA
bool
option env="HAVE_LUA"
config HAVE_LIBCONFIG
bool
option env="HAVE_LIBCONFIG"
config HAVE_LIBARCHIVE
bool
option env="HAVE_LIBARCHIVE"
config HAVE_LIBCURL
bool
option env="HAVE_LIBCURL"
config HAVE_LIBMTD
bool
option env="HAVE_LIBMTD"
config HAVE_LIBUBI
bool
option env="HAVE_LIBUBI"
config HAVE_LIBUBOOTENV
bool
option env="HAVE_LIBUBOOTENV"
config HAVE_LIBZEROMQ
bool
option env="HAVE_LIBZEROMQ"
config HAVE_ZLIB
bool
option env="HAVE_ZLIB"
config HAVE_LIBSSL
bool
option env="HAVE_LIBSSL"
config HAVE_LIBCRYPTO
bool
option env="HAVE_LIBCRYPTO"
config HAVE_JSON_C
bool
option env="HAVE_JSON_C"
menu "Swupdate Settings"
menu "General Configuration"
config CURL
bool
default n
config SYSTEMD
bool "enable systemd support"
default n
help
Enable support for systemd's start-up completion
notification and socket-based activation features.
config SCRIPTS
bool "enable pre and postinstall scripts"
default y
help
Enabling this option, the installer will run
pre- and postinstall scripts, if they are present
in the image. For security reason, this option
can be switched off.
config HW_COMPATIBILITY
bool "check for hardware / software compatibility"
default n
help
If enabled, check if the hardware revision
supports the software version. Detecting the hardware
revision is very board specific, and it cannot be generalized.
For this reason, the software expects that the detected
version is written into a file by a previous software.
config HW_COMPATIBILITY_FILE
string "File with detected hardware revisions"
depends on HW_COMPATIBILITY
default "/etc/hwrevision"
help
File where to read the detected hardware revsion
that must be compared with the software version.
The file has simple entries (one per line) in the
format of "major.minor".
config SW_VERSIONS_FILE
string "File with detected software version"
default "/etc/sw-versions"
help
This is an optional file that is scanned at the
beginning to read the installed versions of
all sw-components. Each entry in the file is a
a pair of "name version".
In sw-description, an image can have the
optional attributes:
"name" : key for searching in SW_VERSIONS_FILE
"version" : version contained in the .swu
"install-if-different" : if set, version
is compared with the one in SW_VERSIONS_FILE.
The image is installed only if there is a version mismatch.
This lets reduce risks in case of components that are not
safe to be updated, such as the bootloader. Updating it is a risk,
but in some cases it can be required to do it. Having a check,
the risky-component is not always updated.
menu "Socket Paths"
config SOCKET_CTRL_PATH
string "SWUpdate control socket path"
default "/tmp/sockinstctrl"
help
Path to SWUpdate's IPC socket.
config SOCKET_PROGRESS_PATH
string "SWUpdate progress socket path"
default "/tmp/swupdateprog"
help
Path to the socket progress information is sent to.
config SOCKET_REMOTE_HANDLER_DIRECTORY
string "SWUpdate remote handler socket directory"
default "/tmp/"
help
Directory where sockets to remote handler processes
are expected to be found.
endmenu
config MTD
bool "MTD support"
default y
depends on HAVE_LIBMTD
help
Enable MTD support.
comment "MTD support needs libmtd"
depends on !HAVE_LIBMTD
config LUA
bool "lua"
default y
depends on HAVE_LUA
help
Enable Lua interpreter.
comment "Lua support needs a Lua interpreter"
depends on !HAVE_LUA
config LUAPKG
string "Lua pkg-config name"
default "lua"
depends on LUA
help
Which pkg-config package supplies the Lua API.
# These are auto-selected by other options
config FEATURE_SYSLOG
bool #No description makes it a hidden option
default n
#help
# This option is auto-selected when you select any applet which may
# send its output to syslog. You do not need to select it manually.
endmenu
menu 'Build Options'
config CROSS_COMPILE
string "Cross Compiler prefix"
default ""
help
If you want to build swupdate with a cross compiler, then you
will need to set this to the cross-compiler prefix, for example,
"i386-uclibc-".
Native builds leave this empty.
config SYSROOT
string "Path to sysroot"
default ""
help
If you want to build swupdate with a cross compiler, then you
might also need to specify where /usr/include and /usr/lib
will be found.
For example, swupdate can be built against an installed
Android NDK, platform version 9, for ARM ABI with
CONFIG_SYSROOT=/opt/android-ndk/platforms/android-9/arch-arm
Native builds leave this empty.
config EXTRA_CFLAGS
string "Additional CFLAGS"
default ""
help
Additional CFLAGS to pass to the compiler verbatim.
config EXTRA_LDFLAGS
string "Additional LDFLAGS"
default ""
help
Additional LDFLAGS to pass to the linker verbatim.
config EXTRA_LDLIBS
string "Additional LDLIBS"
default ""
help
Additional LDLIBS to pass to the linker with -l.
endmenu
menu 'Debugging Options'
config DEBUG
bool "Build Swupdate with extra Debugging symbols"
default n
help
Say Y here if you wish to examine swupdate internals while applets are
running. This increases the size of the binary considerably, and
should only be used when doing development. If you are doing
development and want to debug swupdate, answer Y.
Most people should answer N.
config DEBUG_PESSIMIZE
bool "Disable compiler optimizations"
default n
depends on DEBUG
help
The compiler's optimization of source code can eliminate and reorder
code, resulting in an executable that's hard to understand when
stepping through it with a debugger. This switches it off, resulting
in a much bigger executable that more closely matches the source
code.
config WERROR
bool "Abort compilation on any warning"
default n
help
Selecting this will add -Werror to gcc command line.
Most people should answer N.
config NOCLEANUP
bool "Do not remove temporary files after execution"
default n
help
After each run, temporary files are removed from the directory
pointed to by the environment variable TMPDIR (/tmp as fallback
if unset) to restart in a clean state. For debugging purposes, it
helps to check the consistency of the files extracted by SWUpdate.
For production, answer N.
endmenu
endmenu
source bootloader/Config.in
config DOWNLOAD
bool "Enable image downloading"
default n
depends on HAVE_LIBCURL
select CURL
help
Enable update from image URL using libcurl. The stream is sent via IPC
to the installer as it is done for other interfaces.
comment "Image downloading support needs libcurl"
depends on !HAVE_LIBCURL
config HASH_VERIFY
bool "Allow to add sha256 hash to each image"
depends on HAVE_LIBSSL
help
Allow to add a sha256 hash to an artifact.
This is automatically set in case of Signed Image
comment "Hash verification needs libssl"
depends on !HAVE_LIBSSL
config SIGNED_IMAGES
bool "Enable verification of signed images"
depends on HAVE_LIBSSL
select HASH_VERIFY
comment "Image verification (signed images) needs libssl"
depends on !HAVE_LIBSSL
choice
prompt "Signature verification algorithm"
depends on SIGNED_IMAGES
default SIGALG_RAWRSA
help
Select if the signature algorithm for signed images is a raw RSA signature
(following PKCS#1.5) or if it uses Cryptographic Message Syntax (CMS).
config SIGALG_RAWRSA
bool "RSA PKCS#1.5"
config SIGALG_CMS
bool "Cryptographic Message Syntax (CMS)"
endchoice
menu "CMS signature verification options"
depends on SIGALG_CMS
config CMS_IGNORE_EXPIRED_CERTIFICATE
bool "Ignore expired certificates"
depends on SIGALG_CMS
config CMS_IGNORE_CERTIFICATE_PURPOSE
bool "Ignore X.509 certificate purpose"
depends on SIGALG_CMS
endmenu
config ENCRYPTED_IMAGES
bool "Images can be encrypted with a symmetric key"
depends on HAVE_LIBSSL
comment "Image encryption needs libssl"
depends on !HAVE_LIBSSL
source suricatta/Config.in
config WEBSERVER
bool "Enable webserver"
default n
select MONGOOSE
help
Enable update from remote using a webserver on the target.
source mongoose/Config.in
source archival/Config.in
source parser/Config.in
source handlers/Config.in