]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Config.in
support/testing: use pexpect.expect directly
[coffee/buildroot.git] / Config.in
1 #
2
3 mainmenu "Buildroot $BR2_VERSION Configuration"
4
5 config BR2_HAVE_DOT_CONFIG
6         bool
7         default y
8
9 config BR2_VERSION
10         string
11         option env="BR2_VERSION_FULL"
12
13 config BR2_HOSTARCH
14         string
15         option env="HOSTARCH"
16
17 config BR2_BUILD_DIR
18         string
19         option env="BUILD_DIR"
20
21 # Hidden config symbols for packages to check system gcc version
22 config BR2_HOST_GCC_VERSION
23         string
24         option env="HOST_GCC_VERSION"
25
26 config BR2_HOST_GCC_AT_LEAST_4_5
27         bool
28         default y if BR2_HOST_GCC_VERSION = "4 5"
29
30 config BR2_HOST_GCC_AT_LEAST_4_6
31         bool
32         default y if BR2_HOST_GCC_VERSION = "4 6"
33         select BR2_HOST_GCC_AT_LEAST_4_5
34
35 config BR2_HOST_GCC_AT_LEAST_4_7
36         bool
37         default y if BR2_HOST_GCC_VERSION = "4 7"
38         select BR2_HOST_GCC_AT_LEAST_4_6
39
40 config BR2_HOST_GCC_AT_LEAST_4_8
41         bool
42         default y if BR2_HOST_GCC_VERSION = "4 8"
43         select BR2_HOST_GCC_AT_LEAST_4_7
44
45 config BR2_HOST_GCC_AT_LEAST_4_9
46         bool
47         default y if BR2_HOST_GCC_VERSION = "4 9"
48         select BR2_HOST_GCC_AT_LEAST_4_8
49
50 config BR2_HOST_GCC_AT_LEAST_5
51         bool
52         default y if BR2_HOST_GCC_VERSION = "5"
53         select BR2_HOST_GCC_AT_LEAST_4_9
54
55 config BR2_HOST_GCC_AT_LEAST_6
56         bool
57         default y if BR2_HOST_GCC_VERSION = "6"
58         select BR2_HOST_GCC_AT_LEAST_5
59
60 # Hidden boolean selected by packages in need of Java in order to build
61 # (example: xbmc)
62 config BR2_NEEDS_HOST_JAVA
63         bool
64
65 # Hidden boolean selected by packages in need of javac in order to build
66 # (example: classpath)
67 config BR2_NEEDS_HOST_JAVAC
68         bool
69
70 # Hidden boolean selected by packages in need of jar in order to build
71 # (example: classpath)
72 config BR2_NEEDS_HOST_JAR
73         bool
74
75 # Hidden boolean selected by pre-built packages for x86, when they
76 # need to run on x86-64 machines (example: pre-built external
77 # toolchains, binary tools like SAM-BA, etc.).
78 config BR2_HOSTARCH_NEEDS_IA32_LIBS
79         bool
80
81 # Hidden boolean selected by packages that need to build 32 bits
82 # binaries with the host compiler, even on 64 bits build machines (e.g
83 # bootloaders).
84 config BR2_HOSTARCH_NEEDS_IA32_COMPILER
85         bool
86
87 # Hidden boolean selected by packages that need the host to have an
88 # UTF8 locale.
89 config BR2_NEEDS_HOST_UTF8_LOCALE
90         bool
91
92 source "arch/Config.in"
93
94 menu "Build options"
95
96 menu "Commands"
97
98 config BR2_WGET
99         string "Wget command"
100         default "wget --passive-ftp -nd -t 3"
101
102 config BR2_SVN
103         string "Subversion (svn) command"
104         default "svn"
105
106 config BR2_BZR
107         string "Bazaar (bzr) command"
108         default "bzr"
109
110 config BR2_GIT
111         string "Git command"
112         default "git"
113
114 config BR2_CVS
115         string "CVS command"
116         default "cvs"
117
118 config BR2_LOCALFILES
119         string "Local files retrieval command"
120         default "cp"
121
122 config BR2_SCP
123         string "Secure copy (scp) command"
124         default "scp"
125
126 config BR2_SSH
127         string "Secure shell (ssh) command"
128         default "ssh"
129
130 config BR2_HG
131         string "Mercurial (hg) command"
132         default "hg"
133
134 config BR2_ZCAT
135         string "zcat command"
136         default "gzip -d -c"
137         help
138           Command to be used to extract a gzip'ed file to stdout. zcat
139           is identical to gunzip -c except that the former may not be
140           available on your system.
141           Default is "gzip -d -c"
142           Other possible values include "gunzip -c" or "zcat".
143
144 config BR2_BZCAT
145         string "bzcat command"
146         default "bzcat"
147         help
148           Command to be used to extract a bzip2'ed file to stdout.
149           bzcat is identical to bunzip2 -c except that the former may
150           not be available on your system.
151           Default is "bzcat"
152           Other possible values include "bunzip2 -c" or "bzip2 -d -c".
153
154 config BR2_XZCAT
155         string "xzcat command"
156         default "xzcat"
157         help
158           Command to be used to extract a xz'ed file to stdout.
159           Default is "xzcat"
160
161 config BR2_LZCAT
162         string "lzcat command"
163         default "lzip -d -c"
164         help
165           Command to be used to extract a lzip'ed file to stdout.
166           Default is "lzip -d -c"
167
168 config BR2_TAR_OPTIONS
169         string "Tar options"
170         default ""
171         help
172           Options to pass to tar when extracting the sources.
173           E.g. " -v --exclude='*.svn*'" to exclude all .svn internal files
174           and to be verbose.
175
176 endmenu
177
178 config BR2_DEFCONFIG_FROM_ENV
179         string
180         option env="BR2_DEFCONFIG"
181
182 config BR2_DEFCONFIG
183         string "Location to save buildroot config"
184         default BR2_DEFCONFIG_FROM_ENV if BR2_DEFCONFIG_FROM_ENV != ""
185         default "$(CONFIG_DIR)/defconfig"
186         help
187           When running 'make savedefconfig', the defconfig file will be
188           saved in this location.
189
190 config BR2_DL_DIR
191         string "Download dir"
192         default "$(TOPDIR)/dl"
193         help
194           Directory to store all the source files that we need to fetch.
195           If the Linux shell environment has defined the BR2_DL_DIR
196           environment variable, then this overrides this configuration
197           item.
198
199           The default is $(TOPDIR)/dl
200
201 config BR2_HOST_DIR
202         string "Host dir"
203         default "$(BASE_DIR)/host"
204         help
205           Directory to store all the binary files that are built for the
206           host. This includes the cross compilation toolchain when
207           building the internal buildroot toolchain.
208
209           The default is $(BASE_DIR)/host
210
211 menu "Mirrors and Download locations"
212
213 config BR2_PRIMARY_SITE
214         string "Primary download site"
215         default ""
216         help
217           Primary site to download from. If this option is set then
218           buildroot will try to download package source first from this
219           site and try the default if the file is not found.
220           Valid URIs are:
221             - URIs recognized by $(WGET)
222             - local URIs of the form file://absolutepath
223             - scp URIs of the form scp://[user@]host:path.
224
225 config BR2_PRIMARY_SITE_ONLY
226         bool "Only allow downloads from primary download site"
227         depends on BR2_PRIMARY_SITE != ""
228         help
229           If this option is enabled, downloads will only be attempted
230           from the primary download site. Other locations, like the
231           package's official download location or the backup download
232           site, will not be considered. Therefore, if the package is not
233           present on the primary site, the download fails.
234
235           This is useful for project developers who want to ensure that
236           the project can be built even if the upstream tarball
237           locations disappear.
238
239 if !BR2_PRIMARY_SITE_ONLY
240
241 config BR2_BACKUP_SITE
242         string "Backup download site"
243         default "http://sources.buildroot.net"
244         help
245           Backup site to download from. If this option is set then
246           buildroot will fall back to download package sources from here
247           if the normal location fails.
248
249 config BR2_KERNEL_MIRROR
250         string "Kernel.org mirror"
251         default "https://cdn.kernel.org/pub"
252         help
253           kernel.org is mirrored on a number of servers around the
254           world. The following allows you to select your preferred
255           mirror. By default, a CDN is used, which automatically
256           redirects to a mirror geographically close to you.
257
258           Have a look on the kernel.org site for a list of mirrors, then
259           enter the URL to the base directory. Examples:
260
261              http://www.XX.kernel.org/pub (XX = country code)
262              http://mirror.aarnet.edu.au/pub/ftp.kernel.org
263
264 config BR2_GNU_MIRROR
265         string "GNU Software mirror"
266         default "http://ftpmirror.gnu.org"
267         help
268           GNU has multiple software mirrors scattered around the
269           world. The following allows you to select your preferred
270           mirror. By default, a generic address is used, which
271           automatically selects an up-to-date and local mirror.
272
273           Have a look on the gnu.org site for a list of mirrors, then
274           enter the URL to the base directory. Examples:
275
276              http://ftp.gnu.org/pub/gnu
277              http://mirror.aarnet.edu.au/pub/gnu
278
279 config BR2_LUAROCKS_MIRROR
280         string "LuaRocks mirror"
281         default "http://rocks.moonscript.org"
282         help
283           LuaRocks repository.
284
285           See http://luarocks.org
286
287 config BR2_CPAN_MIRROR
288         string "CPAN mirror (Perl packages)"
289         default "http://cpan.metacpan.org"
290         help
291           CPAN (Comprehensive Perl Archive Network) is a repository of
292           Perl packages. It has multiple software mirrors scattered
293           around the world. This option allows you to select a mirror.
294
295           The list of mirrors is available at:
296           http://search.cpan.org/mirror
297
298 endif
299
300 endmenu
301
302 config BR2_JLEVEL
303         int "Number of jobs to run simultaneously (0 for auto)"
304         default "0"
305         help
306           Number of jobs to run simultaneously. If 0, determine
307           automatically according to number of CPUs on the host system.
308
309 config BR2_CCACHE
310         bool "Enable compiler cache"
311         help
312           This option will enable the use of ccache, a compiler cache.
313           It will cache the result of previous builds to speed up future
314           builds. By default, the cache is stored in
315           $HOME/.buildroot-ccache.
316
317           Note that Buildroot does not try to invalidate the cache
318           contents when the compiler changes in an incompatible way.
319           Therefore, if you make a change to the compiler version and/or
320           configuration, you are responsible for purging the ccache
321           cache by removing the $HOME/.buildroot-ccache directory.
322
323 if BR2_CCACHE
324
325 config BR2_CCACHE_DIR
326         string "Compiler cache location"
327         default "$(HOME)/.buildroot-ccache"
328         help
329           Where ccache should store cached files.
330
331 config BR2_CCACHE_INITIAL_SETUP
332         string "Compiler cache initial setup"
333         help
334           Initial ccache settings to apply, such as --max-files or
335           --max-size.
336
337           For example, if your project is known to require more space
338           than the default max cache size, then you might want to
339           increase the cache size to a suitable amount using the -M
340           (--max-size) option.
341
342           The string you specify here is passed verbatim to ccache.
343           Refer to ccache documentation for more details.
344
345           These initial settings are applied after ccache has been
346           compiled.
347
348 config BR2_CCACHE_USE_BASEDIR
349         bool "Use relative paths"
350         default y
351         help
352           Allow ccache to convert absolute paths within the output
353           directory into relative paths.
354
355           During the build, many -I include directives are given with an
356           absolute path. These absolute paths end up in the hashes that
357           are computed by ccache. Therefore, when you build from a
358           different directory, the hash will be different and the cached
359           object will not be used.
360
361           To improve cache performance, set this option to y. This
362           allows ccache to rewrite absolute paths within the output
363           directory into relative paths. Note that only paths within the
364           output directory will be rewritten; therefore, if you change
365           BR2_HOST_DIR to point outside the output directory and
366           subsequently move it to a different location, this will lead
367           to cache misses.
368
369           This option has as a result that the debug information in the
370           object files also has only relative paths. Therefore, make
371           sure you cd to the build directory before starting gdb. See
372           the section "COMPILING IN DIFFERENT DIRECTORIES" in the ccache
373           manual for more information.
374
375 endif
376
377 config BR2_ENABLE_DEBUG
378         bool "build packages with debugging symbols"
379         help
380           Build packages with debugging symbols enabled. All libraries
381           and binaries in the 'staging' directory will have debugging
382           symbols, which allows remote debugging even if libraries and
383           binaries are stripped on the target. Whether libraries and
384           binaries are stripped on the target is controlled by the
385           BR2_STRIP_* options below.
386
387 if BR2_ENABLE_DEBUG
388 choice
389         prompt "gcc debug level"
390         default BR2_DEBUG_2
391         help
392           Set the debug level for gcc
393
394 config BR2_DEBUG_1
395         bool "debug level 1"
396         help
397           Debug level 1 produces minimal information, enough for making
398           backtraces in parts of the program that you don't plan to
399           debug. This includes descriptions of functions and external
400           variables, but no information about local variables and no
401           line numbers.
402
403 config BR2_DEBUG_2
404         bool "debug level 2"
405         help
406           The default gcc debug level is 2
407
408 config BR2_DEBUG_3
409         bool "debug level 3"
410         help
411           Level 3 includes extra information, such as all the macro
412           definitions present in the program. Some debuggers support
413           macro expansion when you use -g3.
414 endchoice
415 endif
416
417 config BR2_STRIP_strip
418         bool "strip target binaries"
419         depends on !BR2_PACKAGE_HOST_ELF2FLT
420         default y
421         help
422           Binaries and libraries in the target filesystem will be
423           stripped using the normal 'strip' command. This allows to save
424           space, mainly by removing debugging symbols. Debugging symbols
425           on the target are needed for native debugging, but not when
426           remote debugging is used.
427
428 config BR2_STRIP_EXCLUDE_FILES
429         string "executables that should not be stripped"
430         depends on BR2_STRIP_strip
431         default ""
432         help
433           You may specify a space-separated list of binaries and
434           libraries here that should not be stripped on the target.
435
436 config BR2_STRIP_EXCLUDE_DIRS
437         string "directories that should be skipped when stripping"
438         depends on BR2_STRIP_strip
439         default ""
440         help
441           You may specify a space-separated list of directories that
442           should be skipped when stripping. Binaries and libraries in
443           these directories will not be touched. The directories should
444           be specified relative to the target directory, without leading
445           slash.
446
447 choice
448         prompt "gcc optimization level"
449         default BR2_OPTIMIZE_S
450         help
451           Set the optimization level for gcc
452
453 config BR2_OPTIMIZE_0
454         bool "optimization level 0"
455         help
456           Do not optimize. This is the default.
457
458 config BR2_OPTIMIZE_1
459         bool "optimization level 1"
460         help
461           Optimize. Optimizing compilation takes somewhat more time, and
462           a lot more memory for a large function. With -O, the compiler
463           tries to reduce code size and execution time, without
464           performing any optimizations that take a great deal of
465           compilation time. -O turns on the following optimization
466           flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
467           -fcprop-registers -floop-optimize -fif-conversion
468           -fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
469           -ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
470           -ftree-fre -ftree-ch -funit-at-a-time -fmerge-constants. -O
471           also turns on -fomit-frame-pointer on machines where doing so
472           does not interfere with debugging.
473
474 config BR2_OPTIMIZE_2
475         bool "optimization level 2"
476         help
477           Optimize even more. GCC performs nearly all supported
478           optimizations that do not involve a space-speed tradeoff. The
479           compiler does not perform loop unrolling or function inlining
480           when you specify -O2. As compared to -O, this option increases
481           both compilation time and the performance of the generated
482           code. -O2 turns on all optimization flags specified by -O. It
483           also turns on the following optimization flags:
484           -fthread-jumps -fcrossjumping -foptimize-sibling-calls
485           -fcse-follow-jumps -fcse-skip-blocks -fgcse  -fgcse-lm
486           -fexpensive-optimizations -fstrength-reduce
487           -frerun-cse-after-loop -frerun-loop-opt -fcaller-saves
488           -fpeephole2 -fschedule-insns -fschedule-insns2
489           -fsched-interblock -fsched-spec -fregmove -fstrict-aliasing
490           -fdelete-null-pointer-checks -freorder-blocks
491           -freorder-functions -falign-functions -falign-jumps
492           -falign-loops -falign-labels -ftree-vrp -ftree-pre. Please
493           note the warning under -fgcse about invoking -O2 on programs
494           that use computed gotos.
495
496 config BR2_OPTIMIZE_3
497         bool "optimization level 3"
498         help
499           Optimize yet more. -O3 turns on all optimizations specified by
500           -O2 and also turns on the -finline-functions, -funswitch-loops
501           and -fgcse-after-reload options.
502
503 config BR2_OPTIMIZE_G
504         bool "optimize for debugging"
505         depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
506         help
507           Optimize for debugging. This enables optimizations that do not
508           interfere with debugging. It should be the optimization level
509           of choice for the standard edit-compile-debug cycle, offering
510           a reasonable level of optimization while maintaining fast
511           compilation and a good debugging experience.
512
513 config BR2_OPTIMIZE_S
514         bool "optimize for size"
515         help
516           Optimize for size. -Os enables all -O2 optimizations that do
517           not typically increase code size. It also performs further
518           optimizations designed to reduce code size. -Os disables the
519           following optimization flags: -falign-functions -falign-jumps
520           -falign-loops -falign-labels -freorder-blocks
521           -freorder-blocks-and-partition -fprefetch-loop-arrays
522           -ftree-vect-loop-version
523
524 endchoice
525
526 config BR2_GOOGLE_BREAKPAD_ENABLE
527         bool "Enable google-breakpad support"
528         select BR2_PACKAGE_GOOGLE_BREAKPAD
529         depends on BR2_INSTALL_LIBSTDCPP
530         depends on BR2_HOST_GCC_AT_LEAST_4_8 # C++11
531         depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
532         depends on BR2_USE_WCHAR
533         depends on BR2_TOOLCHAIN_HAS_THREADS
534         depends on (BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC)
535         depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS
536         help
537           This option will enable the use of google breakpad, a library
538           and tool suite that allows you to distribute an application to
539           users with compiler-provided debugging information removed,
540           record crashes in compact "minidump" files, send them back to
541           your server and produce C and C++ stack traces from these
542           minidumps. Breakpad can also write minidumps on request for
543           programs that have not crashed.
544
545 if BR2_GOOGLE_BREAKPAD_ENABLE
546
547 config BR2_GOOGLE_BREAKPAD_INCLUDE_FILES
548         string "List of executables and libraries to extract symbols from"
549         default ""
550         help
551           You may specify a space-separated list of binaries and
552           libraries with full paths relative to $(TARGET_DIR) of which
553           debug symbols will be dumped for further use with google
554           breakpad.
555
556           A directory structure that can be used by minidump-stackwalk
557           will be created at:
558
559           $(STAGING_DIR)/usr/share/google-breakpad-symbols
560
561 endif
562
563 choice
564         bool "build code with Stack Smashing Protection"
565         default BR2_SSP_ALL if BR2_ENABLE_SSP # legacy
566         depends on BR2_TOOLCHAIN_HAS_SSP
567         help
568           Enable stack smashing protection support using GCC's
569           -fstack-protector option family.
570
571           See
572           http://www.linuxfromscratch.org/hints/downloads/files/ssp.txt
573           for details.
574
575           Note that this requires the toolchain to have SSP support.
576           This is always the case for glibc and eglibc toolchain, but is
577           optional in uClibc toolchains.
578
579 config BR2_SSP_NONE
580         bool "None"
581         help
582           Disable stack-smashing protection.
583
584 config BR2_SSP_REGULAR
585         bool "-fstack-protector"
586         help
587           Emit extra code to check for buffer overflows, such as stack
588           smashing attacks. This is done by adding a guard variable to
589           functions with vulnerable objects. This includes functions
590           that call alloca, and functions with buffers larger than 8
591           bytes. The guards are initialized when a function is entered
592           and then checked when the function exits. If a guard check
593           fails, an error message is printed and the program exits.
594
595 config BR2_SSP_STRONG
596         bool "-fstack-protector-strong"
597         depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
598         help
599           Like -fstack-protector but includes additional functions to be
600           protected - those that have local array definitions, or have
601           references to local frame addresses.
602
603 comment "Stack Smashing Protection strong needs a toolchain w/ gcc >= 4.9"
604         depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
605
606 config BR2_SSP_ALL
607         bool "-fstack-protector-all"
608         help
609           Like -fstack-protector except that all functions are
610           protected. This option might have a significant performance
611           impact on the compiled binaries.
612
613 endchoice
614
615 comment "Stack Smashing Protection needs a toolchain w/ SSP"
616         depends on !BR2_TOOLCHAIN_HAS_SSP
617
618 choice
619         bool "libraries"
620         default BR2_SHARED_LIBS if BR2_BINFMT_SUPPORTS_SHARED
621         default BR2_STATIC_LIBS if !BR2_BINFMT_SUPPORTS_SHARED
622         help
623           Select the type of libraries you want to use on the target.
624
625           The default is to build dynamic libraries and use those on the
626           target filesystem, except when the architecture and/or the
627           selected binary format does not support shared libraries.
628
629 config BR2_STATIC_LIBS
630         bool "static only"
631         help
632           Build and use only static libraries. No shared libraries will
633           be installed on the target. This potentially increases your
634           code size and should only be used if you know what you are
635           doing. Note that some packages may not be available when this
636           option is enabled, due to their need for dynamic library
637           support.
638
639 config BR2_SHARED_LIBS
640         bool "shared only"
641         depends on BR2_BINFMT_SUPPORTS_SHARED
642         help
643           Build and use only shared libraries. This is the recommended
644           solution as it saves space and build time.
645
646 config BR2_SHARED_STATIC_LIBS
647         bool "both static and shared"
648         depends on BR2_BINFMT_SUPPORTS_SHARED
649         help
650           Build both shared and static libraries, but link executables
651           dynamically. While building both shared and static libraries
652           take more time and more disk space, having static libraries
653           may be useful to link some of the applications statically.
654
655 endchoice
656
657
658 config BR2_PACKAGE_OVERRIDE_FILE
659         string "location of a package override file"
660         default "$(CONFIG_DIR)/local.mk"
661         help
662           A package override file is a short makefile that contains
663           variable definitions of the form <pkg>_OVERRIDE_SRCDIR, which
664           allows to tell Buildroot to use an existing directory as the
665           source directory for a particular package. See the Buildroot
666           documentation for more details on this feature.
667
668 config BR2_GLOBAL_PATCH_DIR
669         string "global patch directories"
670         help
671           You may specify a space separated list of one or more
672           directories containing global package patches. For a specific
673           version <packageversion> of a specific package <packagename>,
674           patches are applied as follows:
675
676           First, the default Buildroot patch set for the package is
677           applied from the package's directory in Buildroot.
678
679           Then for every directory - <global-patch-dir> - that exists in
680           BR2_GLOBAL_PATCH_DIR, if the directory
681           <global-patch-dir>/<packagename>/<packageversion>/ exists,
682           then all *.patch files in this directory will be applied.
683
684           Otherwise, if the directory <global-patch-dir>/<packagename>
685           exists, then all *.patch files in the directory will be
686           applied.
687
688 menu "Advanced"
689
690 config BR2_COMPILER_PARANOID_UNSAFE_PATH
691         bool "paranoid check of library/header paths"
692         default y
693         help
694           By default, when this option is disabled, when the Buildroot
695           cross-compiler will encounter an unsafe library or header path
696           (such as /usr/include, or /usr/lib), the compiler will display
697           a warning.
698
699           By enabling this option, this warning is turned into an error,
700           which will completely abort the build when such unsafe paths
701           are encountered.
702
703           Note that this mechanism is available for both the internal
704           toolchain (through the toolchain wrapper and binutils patches)
705           and external toolchain backends (through the toolchain wrapper).
706
707 config BR2_REPRODUCIBLE
708         bool "Make the build reproducible (experimental)"
709         help
710           This option will remove all sources of non-reproducibility
711           from the build process. For a given Buildroot configuration,
712           this allows to generate exactly identical binaries from one
713           build to the other, including on different machines.
714
715           The current implementation is restricted to builds with the
716           same output directory. Many (absolute) paths are recorded in
717           intermediary files, and it is very likely that some of these
718           paths leak into the target rootfs. If you build with the
719           same O=... path, however, the result is identical.
720
721           This is labeled as an experimental feature, as not all
722           packages behave properly to ensure reproducibility.
723
724 endmenu
725
726 endmenu
727
728 source "toolchain/Config.in"
729
730 source "system/Config.in"
731
732 source "linux/Config.in"
733
734 source "package/Config.in"
735
736 source "fs/Config.in"
737
738 source "boot/Config.in"
739
740 source "package/Config.in.host"
741
742 source "Config.in.legacy"
743
744 source "$BR2_BUILD_DIR/.br2-external.in"