24c2bcf13007c7bdf1cb4aba0ba8c390f3415998
[openwrt/openwrt.git] / config / Config-build.in
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # Copyright (C) 2006-2013 OpenWrt.org
4 # Copyright (C) 2016 LEDE Project
5
6 config EXPERIMENTAL
7 bool "Enable experimental features by default"
8 help
9 Set this option to build with latest bleeding edge features
10 which may or may not work as expected.
11 If you would like to help the development of OpenWrt, you are
12 encouraged to set this option and provide feedback (both
13 positive and negative). But do so only if you know how to
14 recover your device in case of flashing potentially non-working
15 firmware.
16
17 If you plan to use this build in production, say NO!
18
19 menu "Global build settings"
20
21 config JSON_OVERVIEW_IMAGE_INFO
22 bool "Create JSON info file overview per target"
23 default y
24 help
25 Create a JSON info file called profiles.json in the target
26 directory containing machine readable list of built profiles
27 and resulting images.
28
29 config JSON_CYCLONEDX_SBOM
30 bool "Create CycloneDX SBOM JSON"
31 default BUILDBOT
32 help
33 Create a JSON files *.bom.cdx.json in the build
34 directory containing Software Bill Of Materials in CycloneDX
35 format.
36
37 config ALL_NONSHARED
38 bool "Select all target specific packages by default"
39 select ALL_KMODS
40 default BUILDBOT
41
42 config ALL_KMODS
43 bool "Select all kernel module packages by default"
44
45 config ALL
46 bool "Select all userspace packages by default"
47 select ALL_KMODS
48 select ALL_NONSHARED
49
50 config BUILDBOT
51 bool "Set build defaults for automatic builds (e.g. via buildbot)"
52 help
53 This option changes several defaults to be more suitable for
54 automatic builds. This includes the following changes:
55 - Deleting build directories after compiling (to save space)
56 - Enabling per-device rootfs support
57 ...
58
59 config SIGNED_PACKAGES
60 bool "Cryptographically signed package lists"
61 default y
62
63 config SIGNATURE_CHECK
64 bool "Enable signature checking in opkg"
65 default SIGNED_PACKAGES
66
67 config DOWNLOAD_CHECK_CERTIFICATE
68 bool "Enable TLS certificate verification during package download"
69 default y
70
71 comment "General build options"
72
73 config TESTING_KERNEL
74 bool "Use the testing kernel version"
75 depends on HAS_TESTING_KERNEL
76 default EXPERIMENTAL
77 help
78 If the target supports a newer kernel version than the default,
79 you can use this config option to enable it
80
81
82 config DISPLAY_SUPPORT
83 bool "Show packages that require graphics support (local or remote)"
84
85 config BUILD_PATENTED
86 bool "Compile with support for patented functionality"
87 help
88 When this option is disabled, software which provides patented functionality
89 will not be built. In case software provides optional support for patented
90 functionality, this optional support will get disabled for this package.
91
92 config BUILD_NLS
93 bool "Compile with full language support"
94 help
95 When this option is enabled, packages are built with the full versions of
96 iconv and GNU gettext instead of the default OpenWrt stubs. If uClibc is
97 used, it is also built with locale support.
98
99 config SHADOW_PASSWORDS
100 bool
101 default y
102
103 config CLEAN_IPKG
104 bool
105 prompt "Remove ipkg/opkg status data files in final images"
106 help
107 This removes all ipkg/opkg status data files from the target directory
108 before building the root filesystem.
109
110 config IPK_FILES_CHECKSUMS
111 bool
112 prompt "Record files checksums in package metadata"
113 help
114 This makes file checksums part of package metadata. It increases size
115 but provides you with pkg_check command to check for flash corruptions.
116
117 config INCLUDE_CONFIG
118 bool "Include build configuration in firmware" if DEVEL
119 help
120 If enabled, buildinfo files will be stored in /etc/build.* of firmware.
121
122 config REPRODUCIBLE_DEBUG_INFO
123 bool "Make debug information reproducible"
124 default BUILDBOT
125 help
126 This strips the local build path out of debug information. This has the
127 advantage of making it reproducible, but the disadvantage of making local
128 debugging using ./scripts/remote-gdb harder, since the debug data will
129 no longer point to the full path on the build host.
130
131 config COLLECT_KERNEL_DEBUG
132 bool
133 prompt "Collect kernel debug information"
134 select KERNEL_DEBUG_INFO
135 default BUILDBOT
136 help
137 This collects debugging symbols from the kernel and all compiled modules.
138 Useful for release builds, so that kernel issues can be debugged offline
139 later.
140
141 menu "Kernel build options"
142
143 source "config/Config-kernel.in"
144
145 endmenu
146
147 comment "Package build options"
148
149 config DEBUG
150 bool
151 prompt "Compile packages with debugging info"
152 help
153 Adds -g3 to the CFLAGS.
154
155 config USE_GC_SECTIONS
156 bool
157 prompt "Dead code and data elimination for all packages (EXPERIMENTAL)"
158 help
159 Places functions and data items into its own sections to use the linker's
160 garbage collection capabilites.
161 Packages can choose to opt-out via setting PKG_BUILD_FLAGS:=no-gc-sections
162
163 config USE_LTO
164 bool
165 prompt "Use the link-time optimizer for all packages (EXPERIMENTAL)"
166 help
167 Adds LTO flags to the CFLAGS and LDFLAGS.
168 Packages can choose to opt-out via setting PKG_BUILD_FLAGS:=no-lto
169
170 config MOLD
171 depends on (aarch64 || arm || i386 || i686 || m68k || powerpc || powerpc64 || sh4 || x86_64)
172 depends on !GCC_USE_VERSION_11
173 def_bool $(shell, ./config/check-hostcxx.sh 10 2 12)
174
175 config USE_MOLD
176 bool
177 prompt "Use the mold linker for all packages"
178 depends on MOLD
179 help
180 Link packages with mold, a modern linker
181 Packages can opt-out via setting PKG_BUILD_FLAGS:=no-mold
182
183 config IPV6
184 def_bool y
185
186 comment "Stripping options"
187
188 choice
189 prompt "Binary stripping method"
190 default USE_STRIP if USE_GLIBC
191 default USE_SSTRIP
192 help
193 Select the binary stripping method you wish to use.
194
195 config NO_STRIP
196 bool "none"
197 help
198 This will install unstripped binaries (useful for native
199 compiling/debugging).
200
201 config USE_STRIP
202 bool "strip"
203 help
204 This will install binaries stripped using strip from binutils.
205
206 config USE_SSTRIP
207 bool "sstrip"
208 depends on !USE_GLIBC
209 help
210 This will install binaries stripped using sstrip.
211 endchoice
212
213 config STRIP_ARGS
214 string
215 prompt "Strip arguments"
216 depends on USE_STRIP
217 default "--strip-unneeded --remove-section=.comment --remove-section=.note" if DEBUG
218 default "--strip-all"
219 help
220 Specifies arguments passed to the strip command when stripping binaries.
221
222 config SSTRIP_DISCARD_TRAILING_ZEROES
223 bool "Strip trailing zero bytes"
224 depends on USE_SSTRIP && !USE_MOLD
225 default y
226 help
227 Use sstrip's -z option to discard trailing zero bytes
228
229 config STRIP_KERNEL_EXPORTS
230 bool "Strip unnecessary exports from the kernel image"
231 help
232 Reduces kernel size by stripping unused kernel exports from the kernel
233 image. Note that this might make the kernel incompatible with any kernel
234 modules that were not selected at the time the kernel image was created.
235
236 config USE_MKLIBS
237 bool "Strip unnecessary functions from libraries"
238 help
239 Reduces libraries to only those functions that are necessary for using all
240 selected packages (including those selected as <M>). Note that this will
241 make the system libraries incompatible with most of the packages that are
242 not selected during the build process.
243
244 comment "Hardening build options"
245
246 config PKG_CHECK_FORMAT_SECURITY
247 bool
248 prompt "Enable gcc format-security"
249 default y
250 help
251 Add -Wformat -Werror=format-security to the CFLAGS. You can disable
252 this per package by adding PKG_CHECK_FORMAT_SECURITY:=0 in the package
253 Makefile.
254
255 choice
256 prompt "User space ASLR PIE compilation"
257 default PKG_ASLR_PIE_NONE if ((SMALL_FLASH || LOW_MEMORY_FOOTPRINT) && !SDK)
258 default PKG_ASLR_PIE_REGULAR
259 help
260 Add -fPIC to CFLAGS and -specs=hardened-build-ld to LDFLAGS.
261 This enables package build as Position Independent Executables (PIE)
262 to protect against "return-to-text" attacks. This belongs to the
263 feature of Address Space Layout Randomisation (ASLR), which is
264 implemented by the kernel and the ELF loader by randomising the
265 location of memory allocations. This makes memory addresses harder
266 to predict when an attacker is attempting a memory-corruption exploit.
267 You can disable this per package by adding PKG_ASLR_PIE:=0 in the package
268 Makefile.
269 Be ware that ASLR increases the binary size.
270 config PKG_ASLR_PIE_NONE
271 bool "None"
272 help
273 PIE is deactivated for all applications
274 config PKG_ASLR_PIE_REGULAR
275 bool "Regular"
276 help
277 PIE is activated for some binaries, mostly network exposed applications
278 config PKG_ASLR_PIE_ALL
279 bool "All"
280 select BUSYBOX_DEFAULT_PIE
281 help
282 PIE is activated for all applications
283 endchoice
284
285 choice
286 prompt "User space Stack-Smashing Protection"
287 default PKG_CC_STACKPROTECTOR_REGULAR
288 help
289 Enable GCC Stack Smashing Protection (SSP) for userspace applications
290 config PKG_CC_STACKPROTECTOR_NONE
291 bool "None"
292 config PKG_CC_STACKPROTECTOR_REGULAR
293 bool "Regular"
294 config PKG_CC_STACKPROTECTOR_STRONG
295 bool "Strong"
296 config PKG_CC_STACKPROTECTOR_ALL
297 bool "All"
298 endchoice
299
300 choice
301 prompt "Kernel space Stack-Smashing Protection"
302 default KERNEL_CC_STACKPROTECTOR_REGULAR
303 help
304 Enable GCC Stack-Smashing Protection (SSP) for the kernel
305 config KERNEL_CC_STACKPROTECTOR_NONE
306 bool "None"
307 config KERNEL_CC_STACKPROTECTOR_REGULAR
308 bool "Regular"
309 config KERNEL_CC_STACKPROTECTOR_STRONG
310 bool "Strong"
311 endchoice
312
313 config KERNEL_STACKPROTECTOR
314 bool
315 default KERNEL_CC_STACKPROTECTOR_REGULAR || KERNEL_CC_STACKPROTECTOR_STRONG
316
317 config KERNEL_STACKPROTECTOR_STRONG
318 bool
319 default KERNEL_CC_STACKPROTECTOR_STRONG
320
321 choice
322 prompt "Enable buffer-overflows detection (FORTIFY_SOURCE)"
323 default PKG_FORTIFY_SOURCE_1
324 help
325 Enable the _FORTIFY_SOURCE macro which introduces additional
326 checks to detect buffer-overflows in the following standard library
327 functions: memcpy, mempcpy, memmove, memset, strcpy, stpcpy,
328 strncpy, strcat, strncat, sprintf, vsprintf, snprintf, vsnprintf,
329 gets. "Conservative" (_FORTIFY_SOURCE set to 1) only introduces
330 checks that shouldn't change the behavior of conforming programs,
331 while "aggressive" (_FORTIFY_SOURCES set to 2) some more checking is
332 added, but some conforming programs might fail.
333 config PKG_FORTIFY_SOURCE_NONE
334 bool "None"
335 config PKG_FORTIFY_SOURCE_1
336 bool "Conservative"
337 config PKG_FORTIFY_SOURCE_2
338 bool "Aggressive"
339 endchoice
340
341 choice
342 prompt "Enable RELRO protection"
343 default PKG_RELRO_FULL
344 help
345 Enable a link-time protection known as RELRO (Relocation Read Only)
346 which helps to protect from certain type of exploitation techniques
347 altering the content of some ELF sections. "Partial" RELRO makes the
348 .dynamic section not writeable after initialization, introducing
349 almost no performance penalty, while "full" RELRO also marks the GOT
350 as read-only at the cost of initializing all of it at startup.
351 config PKG_RELRO_NONE
352 bool "None"
353 config PKG_RELRO_PARTIAL
354 bool "Partial"
355 config PKG_RELRO_FULL
356 bool "Full"
357 endchoice
358
359 config TARGET_ROOTFS_SECURITY_LABELS
360 bool
361 select KERNEL_SQUASHFS_XATTR
362 select KERNEL_EXT4_FS_SECURITY
363 select KERNEL_F2FS_FS_SECURITY
364 select KERNEL_UBIFS_FS_SECURITY
365 select KERNEL_JFFS2_FS_SECURITY
366
367 config SELINUX
368 bool "Enable SELinux"
369 select KERNEL_SECURITY_SELINUX
370 select TARGET_ROOTFS_SECURITY_LABELS
371 select PACKAGE_procd-selinux
372 select PACKAGE_busybox-selinux
373 help
374 This option enables SELinux kernel features, applies security labels
375 in squashfs rootfs and selects the selinux-variants of busybox and procd.
376
377 Selecting this option results in about 0.5MiB of additional flash space
378 usage accounting for increased kernel and rootfs size.
379
380 choice
381 prompt "default SELinux type"
382 depends on TARGET_ROOTFS_SECURITY_LABELS
383 default SELINUXTYPE_dssp
384 help
385 Select SELinux policy to be installed and used for applying rootfs labels.
386
387 config SELINUXTYPE_targeted
388 bool "targeted"
389 select PACKAGE_refpolicy
390 help
391 SELinux Reference Policy (refpolicy)
392
393 config SELINUXTYPE_dssp
394 bool "dssp"
395 select PACKAGE_selinux-policy
396 help
397 Defensec SELinux Security Policy -- OpenWrt edition
398
399 endchoice
400
401 config SECCOMP
402 bool "Enable SECCOMP"
403 select KERNEL_SECCOMP
404 select PACKAGE_procd-seccomp
405 depends on (aarch64 || arm || armeb || mips || mipsel || mips64 || mips64el || i386 || powerpc || x86_64)
406 depends on !TARGET_uml
407 default y
408 help
409 This option enables seccomp kernel features to safely
410 execute untrusted bytecode and selects the seccomp-variants
411 of procd
412
413 endmenu