source: Config.in@ 5120fdc

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 5120fdc was f600e66, checked in by George Boudreau <georgeb@…>, 17 years ago

Correct typo in Config.in

  • Property mode set to 100644
File size: 25.0 KB
Line 
1menu "--- BOOK Settings"
2
3 #--- BOOK/script
4 choice
5 prompt "Use BOOK"
6 default BOOK_LFS
7 help
8 #-- Select the BOOK/Build style you wish to configure.
9
10 config BOOK_LFS
11 bool "Linux From Scratch"
12
13 config BOOK_CLFS
14 bool "Cross-Compiled Linux From Scratch"
15
16 config BOOK_CLFS2
17 bool "Cross-Compiled Linux From Scratch (Sysroot method)"
18
19 config BOOK_CLFS3
20 bool "Cross-Compiled Linux From Scratch (Embedded Systems)"
21
22 config BOOK_HLFS
23 bool "Hardened Linux From Scratch"
24
25 config BOOK_BLFS
26 bool "Beyond Linux From Scratch"
27 endchoice
28
29 config PROGNAME
30 string
31 default "lfs" if BOOK_LFS
32 default "clfs" if BOOK_CLFS
33 default "clfs2" if BOOK_CLFS2
34 default "clfs3" if BOOK_CLFS3
35 default "hlfs" if BOOK_HLFS
36 default "blfs" if BOOK_BLFS
37
38 config RUN_ME
39 string
40 default "./jhalfs run" if !BOOK_BLFS
41 default "./blfs-tool" if BOOK_BLFS
42 #--- End BOOK/script
43
44 #--- Book version
45 choice
46 prompt "Release"
47 default relSVN
48 config relSVN
49 bool "SVN"
50 help
51 #-- Current development version as in trunk
52
53 config WORKING_COPY
54 bool "Working Copy"
55 depends on !BOOK_BLFS
56 help
57 #-- A local working copy
58
59 config BRANCH
60 bool "Branch or stable book" if !BOOK_CLFS2 && !BOOK_CLFS3
61 help
62 #-- A supported SVN branch or stable released book
63 endchoice
64
65 config BRANCH_ID
66 string "Book Version (mandatory)"
67 default "**EDIT ME**"
68 depends BRANCH
69 help
70 #-- A list of valid branches and stable books ID's is available here.
71 # http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
72
73 config BOOK
74 string "Loc of working copy (mandatory)"
75 default "**EDIT ME**"
76 depends WORKING_COPY
77 help
78 #-- The full path to a local copy of the book XML sources
79 #
80 #--- End BOOK version
81
82 #--- CLFS specific params
83 choice
84 prompt "Target architecture"
85 default ARCH_X86
86 depends BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
87 help
88 #-- Choose the target system base architecture
89
90 config ARCH_X86
91 bool "x86"
92
93 config ARCH_MIPS
94 bool "mips" if !BOOK_CLFS2
95
96 config ARCH_PPC
97 bool "ppc" if BOOK_CLFS
98
99 config ARCH_SPARC
100 bool "sparc" if BOOK_CLFS
101
102 config ARCH_ALPHA
103 bool "alpha" if !BOOK_CLFS3
104
105 config ARCH_ARM
106 bool "arm" if !BOOK_CLFS
107
108 config ARCH_HPPA
109 bool "hppa" if BOOK_CLFS2
110 endchoice
111
112 choice
113 prompt "Hardware Platform"
114 depends BOOK_CLFS3 && ARCH_MIPS
115 default PLATFORM_GENERIC
116 help
117 # Chose a destination platform
118 # Platform specific files will be included
119
120 config PLATFORM_GENERIC
121 bool "Generic platform"
122
123 config PLATFORM_WRT
124 bool "WRT - MIPS based wireless router" if ARCH_MIPS
125 endchoice
126
127 choice
128 prompt "Library"
129 depends (BOOK_CLFS && !ARCH_ALPHA) || (BOOK_CLFS3 && ARCH_MIPS)
130 default DATA_32
131 help
132 #-- Choose the target system libraries type
133
134 config DATA_32
135 bool "32-bit"
136
137 config DATA_64
138 bool "64-bit" if !ARCH_PPC
139
140 config DATA_MULTI
141 bool "multilib" if !(BOOK_CLFS3 && ARCH_MIPS )
142 endchoice
143
144 choice
145 prompt "Processor type"
146 depends (BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3) && ((ARCH_X86 && !(DATA_64 || DATA_MULTI)) || ARCH_MIPS || ARCH_HPPA || ARCH_ALPHA || (ARCH_ARM && BOOK_CLFS3))
147 help
148 #-- Choose the target system processor
149
150 config PROC_i486
151 bool "486 Compatibles" if ARCH_X86
152
153 config PROC_i586
154 bool "Pentium, K6, 586 Compatibles" if ARCH_X86
155
156 config PROC_i686
157 bool "Pentium II, Pentium III, Pentium 4, Athlon, Duron" if ARCH_X86
158
159 config PROC_mipsel
160 bool "MIPS Little Endian" if ARCH_MIPS
161
162 config PROC_mips
163 bool "MIPS Big Endian" if ARCH_MIPS
164
165 config PROC_unknown
166 bool "Unknown" if ARCH_HPPA || ARCH_ALPHA
167
168 config PROC_hppa1
169 bool "PA 7000 Series" if ARCH_HPPA
170
171 config PROC_hppa2
172 bool "PA 8000 Series" if ARCH_HPPA
173
174 config PROC_EV5
175 bool "EV5 Series" if ARCH_ALPHA
176
177 config PROC_EV56
178 bool "EV56 Series" if ARCH_ALPHA
179
180 config PROC_PCA56
181 bool "PCA56 Series" if ARCH_ALPHA
182
183 config PROC_PCA57
184 bool "PCA57 Series" if ARCH_ALPHA
185
186 config PROC_EV6
187 bool "EV6 Series" if ARCH_ALPHA
188
189 config PROC_EV67
190 bool "EV67 Series" if ARCH_ALPHA
191
192 config PROC_EV68
193 bool "EV68 Series" if ARCH_ALPHA
194
195 config PROC_ARM
196 bool "Generic arm, little endian" if ARCH_ARM
197
198 config PROC_ARM5L
199 bool "Generic arm, version 5, little endian" if ARCH_ARM
200
201 config PROC_ARM5B
202 bool "Generic arm, version 5, big endian" if ARCH_ARM
203 endchoice
204
205 choice
206 prompt "MIPS 64 ABI"
207 depends BOOK_CLFS3 && ARCH_MIPS && DATA_64
208 default ABI_64
209 help
210 #-- Choose the target system ABI to use
211
212 config ABI_32
213 bool "o32"
214
215 config ABI_N32
216 bool "n32"
217
218 config ABI_64
219 bool "n64"
220 endchoice
221
222 config TARGET
223 string
224 default "i486-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i486
225 default "i586-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i586
226 default "i686-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i686
227
228 default "i486-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i486
229 default "i586-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i586
230 default "i686-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i686
231
232 default "x86_64-unknown-linux-gnu" if ARCH_X86 && (DATA_64 || DATA_MULTI)
233
234 default "mipsel-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mipsel && DATA_32
235 default "mips-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mips && DATA_32
236 default "mips64el-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mipsel && (DATA_64 || DATA_MULTI)
237 default "mips64-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mips && (DATA_64 || DATA_MULTI)
238
239 default "mipsel-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mipsel && DATA_32
240 default "mips-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_32
241 default "mips64el-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mipsel && DATA_64
242 default "mips64-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_64
243
244 default "powerpc-unknown-linux-gnu" if ARCH_PPC && DATA_32
245 default "powerpc64-unknown-linux-gnu" if ARCH_PPC && DATA_MULTI
246
247 default "sparc-unknown-linux-gnu" if ARCH_SPARC && DATA_32
248 default "sparc64-unknown-linux-gnu" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
249
250 default "hppa-unknown-linux-gnu" if PROC_unknown && ARCH_HPPA
251 default "hppa1.1-unknown-linux-gnu" if PROC_hppa1
252 default "hppa2.0-unknown-linux-gnu" if PROC_hppa2
253
254 default "arm-unknown-linux-gnu" if ARCH_ARM && BOOK_CLFS2
255
256 default "arm-unknown-linux-uclibc" if PROC_ARM
257 default "armv5l-unknown-linux-uclibc" if PROC_ARM5L
258 default "armv5b-unknown-linux-uclibc" if PROC_ARM5B
259
260 default "alpha-unknown-linux-gnu" if PROC_unknown && ARCH_ALPHA
261 default "alphaev5-unknown-linux-gnu" if PROC_EV5
262 default "alphaev56-unknown-linux-gnu" if PROC_EV56
263 default "alphapca56-unknown-linux-gnu" if PROC_PCA56
264 default "alphapca57-unknown-linux-gnu" if PROC_PCA57
265 default "alphaev6-unknown-linux-gnu" if PROC_EV6
266 default "alphaev67-unknown-linux-gnu" if PROC_EV67
267 default "alphaev68-unknown-linux-gnu" if PROC_EV68
268
269 config TARGET32
270 string
271 depends DATA_MULTI
272 default "i686-pc-linux-gnu" if ARCH_X86
273 default "mipsel-unknown-linux-gnu" if PROC_mipsel
274 default "mips-unknown-linux-gnu" if PROC_mips
275 default "sparc-unknown-linux-gnu" if ARCH_SPARC
276 default "powerpc-unknown-linux-gnu" if ARCH_PPC
277
278 config PLATFORM
279 string
280 default "GENERIC" if (!BOOK_CLFS3) || PLATFORM_GENERIC
281 default "WRT - Wireless Router" if PLATFORM_WRT
282
283 config ARCH
284 string
285 default "x86" if ARCH_X86 && (DATA_32 || BOOK_CLFS2 || BOOK_CLFS3)
286 default "x86_64" if ARCH_X86 && DATA_MULTI
287 default "x86_64-64" if ARCH_X86 && DATA_64
288
289 default "wrt" if PLATFORM_WRT && BOOK_CLFS3
290
291 default "mips" if ARCH_MIPS && (DATA_32 || BOOK_CLFS3)
292 default "mips64" if ARCH_MIPS && DATA_MULTI
293 default "mips64-64" if ARCH_MIPS && DATA_64 && BOOK_CLFS
294
295
296 default "ppc" if ARCH_PPC && DATA_32
297 default "ppc64" if ARCH_PPC && DATA_MULTI
298
299 default "sparc" if ARCH_SPARC && DATA_32
300 default "sparc64" if ARCH_SPARC && DATA_MULTI
301 default "sparc64-64" if ARCH_SPARC && DATA_64
302
303 default "alpha" if ARCH_ALPHA
304 default "arm" if ARCH_ARM
305 default "hppa" if ARCH_HPPA
306
307 config MIPS_LEVEL
308 string
309 depends BOOK_CLFS3 && ARCH_MIPS
310 default "1" if DATA_32
311 default "3" if DATA_64
312
313 config ABI
314 string
315 depends BOOK_CLFS3
316 default "-m32" if ARCH_X86 || ARCH_ARM
317# default "-m64" if NO USED YET IN THE BOOK
318 default "-mabi=32" if ABI_32 || (ARCH_MIPS && DATA_32)
319 default "-mabi=n32" if ABI_N32
320 default "-mabi=64" if ABI_64
321
322 choice
323 prompt "Build method"
324 depends BOOK_CLFS
325 help
326 #-- What build method should be used: a chroot jail or minimal boot system
327 # Review the Cross-LFS book chap6 "TO BOOT OR CHROOT" for a full explanation.
328
329 config BUILD_CHROOT
330 bool "chroot"
331
332 config BUILD_BOOT
333 bool "boot"
334 endchoice
335
336 config METHOD
337 string
338 default "chroot" if BUILD_CHROOT
339 default "boot" if BUILD_BOOT
340
341 config BOOT_CONFIG
342 string "BOOT kernel config file (mandatory)"
343 default "***EDIT ME***"
344 depends on BUILD_BOOT
345 help
346 #-- If METHOD=boot, location of boot-kernel config file
347 # The config file will be copied to ${BUILD_DIR}/sources
348 # and renamed 'bootkernel-config'
349 #
350 # NOTE: this setting is required
351 #--- End CLFS specific params
352
353 #--- HLFS specific params
354 config GRSECURITY_HOST
355 bool "Building on grsecurity enabled host?"
356 default n
357 depends on BOOK_HLFS
358 help
359 #-- If your build system has grsecurity patches applied
360 # you MUST enable this switch.
361
362 choice
363 prompt "Library"
364 depends on BOOK_HLFS
365 help
366 #-- Which library model to use: uClibc/glibc
367
368 config LIB_GLIBC
369 bool "glibc"
370
371 config LIB_UCLIBC
372 bool "uClibc"
373 endchoice
374
375 config MODEL
376 depends on BOOK_HLFS
377 string
378 default "glibc" if LIB_GLIBC
379 default "uclibc" if LIB_UCLIBC
380
381 choice
382 prompt "Kernel series"
383 depends on BOOK_HLFS
384 help
385 #-- Which kernel series to use: 2.6/2.4
386
387 config KERNEL_26
388 bool "2.6 kernel series"
389
390 config KERNEL_24
391 bool "2.4 kernel series"
392 endchoice
393
394 config KERNEL
395 depends on BOOK_HLFS
396 string
397 default "2.6" if KERNEL_26
398 default "2.4" if KERNEL_24
399
400# menu "HLFS Additional Features"
401# depends on BOOK_HLFS
402#
403# config SET_SSP
404# bool "Stack-smashing protector"
405# default y
406#
407# config SET_ASLR
408# bool "Address-space layout randomization"
409# default y
410#
411# config SET_PAX
412# bool "PaX-aware ELF executables and kernel"
413# default y
414#
415# config SET_HARDENED_TMP
416# bool "Hardened temporary files creation"
417# default y
418#
419# config SET_WARNINGS
420# bool "Additional warnings"
421# default y
422#
423# config SET_MISC
424# bool "Miscellaneous features"
425# default y
426#
427# config SET_BLOWFISH
428# bool "Blowfish passwords"
429# default y
430# endmenu
431
432 config SSP
433# depends on SET_SSP
434 string
435 default ",ssp,"
436
437 config ASLR
438# depends on SET_ASLR
439 string
440 default ",aslr,"
441
442 config PAX
443# depends on SET_PAX
444 string
445 default ",pax,"
446
447 config HARDENED_TMP
448# depends on SET_HARDENED_TMP
449 string
450 default ",hardened_tmp,"
451
452 config WARNINGS
453# depends on SET_WARNINGS
454 string
455 default ",warnings,"
456
457 config MISC
458# depends on SET_MISC
459 string
460 default ",misc,"
461
462 config BLOWFISH
463# depends on SET_BLOWFISH
464 string
465 default ",blowfish,"
466 #--- End HLFS specific params
467
468 #--- Custom Tools support
469 config CUSTOM_TOOLS
470 bool "Add custom tools support"
471 default n
472 depends on !BOOK_BLFS
473 help
474 #--- Activating this option additional packages you create
475 # will be installed after finished the xLFS system build.
476 #
477 #--- End Custom Tools support
478
479 #--- blfs-tool Support
480 config BLFS_TOOL
481 bool "Add blfs-tool support"
482 default n
483 depends on !BOOK_BLFS && !BOOK_CLFS3
484 help
485 #--- Activating this option additional packages needed to
486 # use blfs-tool will be installed.
487 #
488 # The blfs-tool files will be installed under
489 # $BUILD_DIR/blfs_root.
490
491 # After booting the new xLFS system you should to
492 # create an user account and move the /blfs-root
493 # directory to the user's home, making he the
494 # directory and files owner, before start
495 # using blfs-tool.
496 #
497 # Also, be sure to bring to that user read and write
498 # privileges over the $TRACKING_DIR directory and
499 # the files that it contains.
500 #
501 # And don't forget to configure sudo properly.
502
503 choice
504 prompt "BLFS Release"
505 default BLFS_SVN
506 depends on BLFS_TOOL
507 config BLFS_SVN
508 bool "BLFS SVN"
509 help
510 #-- Current development version as in trunk
511
512 config BLFS_BRANCH
513 bool "BLFS Branch or stable book"
514 help
515 #-- A supported SVN branch or stable released book
516 endchoice
517
518 config BLFS_BRANCH_ID
519 string "BLFS Book Version (mandatory)"
520 default "**EDIT ME**"
521 depends on BLFS_BRANCH
522 help
523 #-- A list of valid branches and stable books ID's is available here.
524 # http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
525
526 menu "blfs-tool dependencies"
527 depends on BLFS_TOOL
528
529 config DEP_LIBXML
530 bool "libxml2 (required)"
531 default y
532
533 config DEP_LIBXSLT
534 bool "libxslt (required)"
535 default y
536
537 config DEP_TIDY
538 bool "tidy (required)"
539 default y
540
541 config DEP_DBXML
542 bool "DocBook XML DTD (required)"
543 default y
544
545 config DEP_UNZIP
546 bool "UnZip (required to install DocBook XML DTD)"
547 default y
548 depends on DEP_DBXML
549
550 config DEP_DBXSL
551 bool "DocBook XSL (required)"
552 default y
553
554 config DEP_LINKS
555 bool "links (required)"
556 default y
557
558 config DEP_SUDO
559 bool "sudo (recommended)"
560 default y
561
562 config DEP_WGET
563 bool "wget (recommended)"
564 default y
565
566 config DEP_SVN
567 bool "SVN client (optional)"
568 default y
569
570 config DEP_GPM
571 bool "GPM (optional, see help)"
572 default y
573 help
574 #-- You MUST to install manually the gpm bootscript
575 # and create its configuration file
576 endmenu
577 #--- End blfs-tool Support
578
579 #--- BLFS specific params
580 config BLFS_ROOT
581 string "Directory root"
582 default "$HOME/blfs_root" if BOOK_BLFS
583 default "/blfs_root" if BLFS_TOOL
584 depends on BOOK_BLFS || BLFS_TOOL
585 help
586 #-- Full path to the directory where all required
587 # files and scripts will be stored.
588
589 config BLFS_XML
590 string "BLFS sources directory"
591 default "blfs-xml"
592 depends on BOOK_BLFS || BLFS_TOOL
593 help
594 #-- The directory name under $BLFS_ROOT where BLFS book
595 # sources will be checkout.
596
597 config TRACKING_DIR
598 string "Installed packages database directory"
599 default "/var/lib/jhalfs/BLFS"
600 depends on BOOK_BLFS || BLFS_TOOL || CUSTOM_TOOLS
601 help
602 #-- Full path to the directory where the installed
603 # packages database will be created.
604 #
605 # If you are installing blfs-tool on a running xLFS system
606 # you MUST to create manually this directory.
607 #
608 # If you are installing blfs-tool as part of a xLFS build
609 # and/or using the customized scripts feature, you will
610 # need to fix that directory permissions after booting
611 # the new system.
612 #
613 # Note that the user that will build the packages must
614 # have read and write privileges on that directory.
615 #--- End BLFS specific params
616
617#--- End BOOK Settings
618endmenu
619
620menu "--- General Settings"
621 depends on !BOOK_BLFS
622
623 #--- Set User Account
624 config CONFIG_USER
625 bool "Change the default user/group and homedir for this build"
626 default n
627 help #-- Unprivileged user and group name
628 # If you do not have the priv to create/delete
629 # users and groups you can specifiy your own
630 # user id for the build
631 #
632 # default values for each book
633 # LFS lfs
634 # CLFS* clfs
635 # HLFS hlfs
636 #
637 # Also, if your host place users home dirs into a
638 # directory other than /home you can specify it here.
639
640 config DEF_USER
641 string
642 default "lfs" if BOOK_LFS
643 default "clfs" if BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
644 default "hlfs" if BOOK_HLFS
645
646 config SET_USER
647 string "User account"
648 depends CONFIG_USER
649 default DEF_USER
650
651 config CONFIG_GROUP
652 bool "Set Group?"
653 default n
654 depends CONFIG_USER
655
656 config SET_GROUP
657 string "GROUP account"
658 depends CONFIG_GROUP
659 default DEF_USER
660
661 config CONFIG_HOME
662 bool "Set home dir?"
663 default n
664 depends CONFIG_USER
665
666 config SET_HOME
667 string "Path to the directory where user home dir will be created"
668 depends CONFIG_HOME
669 default "/home"
670
671 config LUSER
672 string
673 default DEF_USER if !CONFIG_USER
674 default SET_USER if CONFIG_USER
675
676 config LGROUP
677 string
678 default LUSER if !CONFIG_GROUP
679 default SET_GROUP if CONFIG_GROUP
680
681 config LHOME
682 string
683 default "/home" if !CONFIG_HOME
684 default SET_HOME if CONFIG_HOME
685 #--- End Set User Account
686
687 config BUILDDIR
688 string "Build Directory"
689 default "/mnt/build_dir"
690 help
691 #-- The directory where the created system will be located.
692
693 config GETPKG
694 bool "Retrieve source files"
695 default n
696 help
697 #-- Download all packages and patches required by the book selected
698 # NOTE: Looks for files in the local archive defined by SRC_ARCHIVE
699 # first and if necessary retrieve them from the 'net.
700 # Files will be transfered to $BUILDDIR/sources.
701
702 config SRC_ARCHIVE
703 string "Package Archive Directory"
704 default "$SRC_ARCHIVE"
705 depends GETPKG
706 help
707 #-- A local archive for packages/file (not $BUILDDIR/sources)
708 # Used only if GETPKG = 1
709 # Any missing file will be downloaded and archived here,
710 # if the user has the right priviledges.
711
712 config SERVER
713 string "FTP mirror"
714 default "ftp://ftp.lfs-matrix.net"
715 depends GETPKG
716 help
717 #-- FTP mirror to download packages and patches if not found
718 # in $SRC_ARCHIVE
719 # As a last resort, the files will dowloaded from upstream,
720 # if possible.
721
722 config GETKERNEL
723 bool "Always retrieve kernel package (see help)"
724 default y if BOOK_LFS || BOOK_HLFS
725 depends GETPKG
726 help
727 #-- Get the kernel package and patches even if no kernel
728 # configuration file has been supplied.
729
730 # NOTE:
731 # The kernel package must be available when building
732 # the SVN version of LFS or HLFS to can install the
733 # headers files.
734 #
735 # If building LFS-6.2 this setting can be disabled.
736
737 config RUNMAKE
738 bool "Run the makefile"
739 default n
740 help
741 #-- Automatically run the makefile once it has been created
742
743 config CLEAN
744 bool "Rebuild files"
745 default n
746 help
747 #-- Clean the build directory before performing any other task.
748 # The directory is cleaned only if it was populated by a
749 # previous JHALFS run.
750 #
751
752#--- End General Settings
753endmenu
754
755menu "--- Build Settings"
756 depends on !BOOK_BLFS
757
758 #--- Test Suites
759 config CONFIG_TESTS
760 bool "Run testsuites"
761 depends !BOOK_CLFS2 && !BOOK_CLFS3
762 default y
763 help
764 #-- Run test suites
765 #
766 # You will can to select between:
767 #
768 # - Only final system Glibc, GCC and Binutils testsuites
769 # - All final system testsuites
770 # - Both temporary tools and final system testsuites
771 #
772 # HLFS and CLFS has no testsuites available in the
773 # temporary tools phase
774
775 # You will be promt also about the "flavour" of the
776 # testsuites run:
777 #
778 # - Don't stop on test suite failures
779 # - Abort the build at the first test suite failure
780 #
781
782 choice
783 prompt "Tests level"
784 depends CONFIG_TESTS
785 default TEST_1
786
787 config TST_1
788 bool "Only final system Glibc, GCC and Binutils testsuites"
789
790 config TST_2
791 bool "All final system testsuites"
792
793 config TST_3
794 bool "Both temporary tools and final system testsuites" if !BOOK_HLFS && !BOOK_CLFS
795 endchoice
796
797 config TEST
798 int
799 default "0" if !CONFIG_TESTS
800 default "1" if TST_1
801 default "2" if TST_2
802 default "3" if TST_3
803
804 choice
805 prompt "Flavour"
806 depends CONFIG_TESTS
807
808 config NO_BOMB
809 bool "Don't stop on test suite failures"
810
811 config BOMB
812 bool "Abort the build at the first test suite failure"
813 endchoice
814
815 config BOMB_TEST
816 bool
817 default n if NO_BOMB
818 default y if BOMB
819
820 #--- End Test Suites
821
822 #--- Installed files logs
823 config INSTALL_LOG
824 bool "Create installed files logs"
825 default n
826 help
827 #-- Select this if you want to create logs of the files
828 # installed by each package on the final system.
829
830 #--- End Installed files logs
831
832 #--- FSTAB
833 config HAVE_FSTAB
834 bool "Use a custom fstab file"
835 default n
836 help
837 #-- Select this if you have ready a proper fstab file
838
839 config FSTAB
840 string "Fstab file (optional)"
841 default "***EDIT ME***"
842 depends on HAVE_FSTAB
843 help
844 #-- The location of fstab file (if empty, a template is created)
845 #--- End FSTAB
846
847 #--- Kernel
848 config CONFIG_BUILD_KERNEL
849 bool "Build the kernel"
850 default n
851 help
852 #-- Select this option if you wish to build the kernel.
853 #
854 # You will be prompted for the full path to the .config
855 # file. It will be copied to the 'sources' directory and
856 # rename kernel-config
857
858 config CONFIG
859 string "Kernel config file"
860 default "***EDIT ME***"
861 depends on CONFIG_BUILD_KERNEL
862 help
863 #-- Fully qualified path to a kernel config file
864 # The config file will be copied to ${BUILD_DIR}/sources
865 # and renamed 'kernel-config'
866 #--- End Kernel
867
868 config STRIP
869 bool "Strip Installed Binaries/Libraries"
870 default y
871 depends on !BOOK_CLFS3
872
873 config VIMLANG
874 bool "Install vim-lang package"
875 default y
876 depends on !BOOK_HLFS && !BOOK_CLFS3
877 help
878 #-- Install the optional vim-lang package
879
880 config TIMEZONE
881 string "TimeZone"
882 default "GMT"
883 help
884 #-- The timezone as output by tzselect
885 # This will be copied to /etc/localtime
886
887 config LANG
888 string "Language"
889 default "$LANG"
890 help
891 #-- Language information in /etc/profile See <locale -a> for values
892
893 #--- Groff page
894 choice
895 prompt "Groff page size"
896 default PAGE_LETTER
897 help
898 #-- Page definition for groff: letter or A4
899
900 config PAGE_LETTER
901 bool "letter"
902
903 config PAGE_A4
904 bool "A4"
905 endchoice
906
907 config PAGE
908 string
909 default "letter" if PAGE_LETTER
910 default "A4" if PAGE_A4
911 #--- End Groff page
912
913#--- End Build Settings
914endmenu
915
916menu "--- Advanced Features"
917 depends on !BOOK_BLFS
918
919 config REPORT
920 bool "Create SBU and disk usage report"
921 default y
922
923 #--- ICA/farce
924 config COMPARE
925 bool "Run comparison analysis on final stage"
926 depends !BOOK_CLFS2 && !BOOK_CLFS3
927 default n
928 help
929 #-- Should some iterative comparison analysis by made?
930 #
931 # Unless you are familiar with ICA and/or FARCE do not
932 # select this option
933 #
934 # ICA and FARCE are analysis tools for comparing one
935 # build to the next. Builds mays differ from one iteration
936 # to another due to the build order and these tools try
937 # to ferret out those differences by examining the stored
938 # build logs and binary files.
939 #
940 # The scripts are well commented and can be found in ./extras/*
941 #
942
943 config ITERATIONS
944 int "Number of test runs (2,3,4,5)" if COMPARE
945 depends on COMPARE
946 range 2 5
947 default 3
948
949 config RUN_ICA
950 bool "ICA testing"
951 depends on COMPARE
952 default y
953 help
954 #-- Run ICA testing
955
956 config RUN_FARCE
957 bool "farce testing"
958 depends on COMPARE
959 default n
960 help
961 #-- Run farce testing
962 #--- End ICA/farce
963
964 #--- Optimizations
965if !BOOK_CLFS2 && !BOOK_CLFS3
966 config CONFIG_OPTIMIZE
967 bool "Use optimization (see help)"
968 default n
969 help
970 #-- Actual optimzation flags MUST be defined in ./optimize/*
971 # files before activate this option.
972 #
973 # WARNING: The use of build optimizations may be dangerous.
974 # You should know what you are doing and be sure that the
975 # optimization settings listed below are what you want.
976 # It there are build issues or the system doesn't work as
977 # expected, please rebuild without optimizations before
978 # asking for support.
979
980 choice
981 prompt "Optimization level "
982 default OPT_1
983 depends CONFIG_OPTIMIZE
984 help
985 #-- Optimization values are set in optimize/* files
986
987 config OPT_1
988 bool "Final system only"
989
990 config OPT_2
991 bool "Both temp tools and final system"
992 endchoice
993
994 config OPTIMIZE
995 int
996 default "0" if !CONFIG_OPTIMIZE
997 default "1" if OPT_1
998 default "2" if OPT_2
999endif
1000 #--- End Optimizations
1001
1002 #-- Internal Settings
1003 menu "--- Internal Settings (WARNING: for jhalfs developers only)"
1004
1005 config SCRIPT_ROOT
1006 string "Scripts root"
1007 default "jhalfs"
1008
1009 config JHALFSDIR
1010 string "jhalfs directory"
1011 default "$BUILDDIR/$SCRIPT_ROOT"
1012
1013 config LOGDIRBASE
1014 string "Build logs directory basename"
1015 default "logs"
1016
1017 config LOGDIR
1018 string "Build logs directory"
1019 default "$JHALFSDIR/$LOGDIRBASE"
1020
1021 config TESTLOGDIRBASE
1022 string "Test suites logs directory basename"
1023 default "test-logs"
1024
1025 config TESTLOGDIR
1026 string "Test suites logs directory"
1027 default "$JHALFSDIR/$TESTLOGDIRBASE"
1028
1029 config FILELOGDIRBASE
1030 string "Installed files logs directory basename"
1031 default "installed-files"
1032
1033 config FILELOGDIR
1034 string "Installed files logs directory"
1035 default "$JHALFSDIR/$FILELOGDIRBASE"
1036
1037 config ICALOGDIR
1038 string "ICA logs directory"
1039 default "$LOGDIR/ICA"
1040
1041 config FARCELOGDIR
1042 string "farce logs directory"
1043 default "$LOGDIR/farce"
1044
1045 config MKFILE
1046 string "Makefile"
1047 default "$JHALFSDIR/Makefile"
1048
1049 config XSL
1050 string "XSL stylesheet"
1051 default "$PROGNAME.xsl"
1052
1053 config PKG_LST
1054 string "Package contents list"
1055 default "unpacked"
1056
1057 #--- End Internal Settings
1058 endmenu
1059
1060#--- End Advanced Features
1061endmenu
1062
1063config REBUILD_MAKEFILE
1064 bool "Rebuild the Makefile (see help)"
1065 default n
1066 depends on !BOOK_BLFS
1067 help
1068 #-- Rebuild the Makefile
1069 #
1070 # This option alow to rebuild the Makefile after
1071 # customizing the base system build scripts.
1072 #
1073 # See README.CUSTOM for more info about this feature.
1074
Note: See TracBrowser for help on using the repository browser.