source: Config.in@ 2c1a763

ablfs-more trunk
Last change on this file since 2c1a763 was 8825e69, checked in by Pierre Labastie <pierre.labastie@…>, 2 years ago

Get completely rid of PROGNAME

There is only one PROGNAME: lfs, so no need for a variable.

  • Property mode set to 100644
File size: 30.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 where build instructions are retrieved.
9
10 config BOOK_LFS
11 bool "Linux From Scratch System V"
12 help
13 Set up the tools to build LFS with SysV init.
14
15 config BOOK_LFS_SYSD
16 bool "Linux From Scratch systemd"
17 help
18 Set up the tools to build LFS with systemd init.
19
20 config BOOK_BLFS
21 bool "Beyond Linux From Scratch (see help)"
22 help
23 if the LFS system has already been built, install the tools
24 to build BLFS packages.
25 endchoice
26
27 choice
28 depends on BOOK_BLFS
29 prompt "Init system"
30
31 config BLFS_SYSV
32 bool "BLFS SysV"
33 help
34 Extract the SysV flavour of the BLFS book
35
36 config BLFS_SYSD
37 bool "BLFS systemd"
38 help
39 Extract the systemd flavour of the BLFS book
40
41 endchoice
42
43 config INITSYS
44 string
45 default "sysv" if BOOK_LFS || BLFS_SYSV
46 default "systemd" if BOOK_LFS_SYSD || BLFS_SYSD
47
48 config RUN_ME
49 string
50 default "./jhalfs run" if BOOK_LFS || BOOK_LFS_SYSD
51 default "./install-blfs-tools.sh auto" if BOOK_BLFS
52 #--- End BOOK/script
53
54 #--- Book version
55 choice
56 prompt "Book version"
57 default BRANCH
58
59 config BRANCH
60 bool "Branch (default to trunk) or any commit"
61 help
62 A GIT branch, tag, or commit
63
64 config WORKING_COPY
65 bool "Working Copy"
66 help
67 A local working copy
68 endchoice
69
70 config COMMIT
71 string "Branch, tag, or any commit"
72 default "trunk"
73 depends on BRANCH
74 help
75 Enter a branch, a tag, or an abbreviated commit sha.
76 The tool will clone the LFS repository and checkout
77 that commit
78
79 config BOOK
80 string "Loc of working copy (mandatory)"
81 default "**EDIT ME**"
82 depends on WORKING_COPY
83 help
84 The full path to a local copy of the book XML sources
85
86 choice
87 depends on (BOOK_LFS || BOOK_LFS_SYSD) && (BRANCH || WORKING_COPY)
88 prompt "Mutilib"
89 default LFS_MULTILIB_NO
90 config LFS_MULTILIB_NO
91 bool "Standard LFS on i686 or amd64"
92 help
93 Use standard LFS book (choose this if not multilib source)
94
95 config LFS_MULTILIB_I686
96 bool "Multilib LFS on amd64 with i686 libraries"
97 help
98 Use Multilib LFS book with i686 libraries
99
100 config LFS_MULTILIB_X32
101 bool "Multilib LFS on amd64 with x32 libraries"
102 help
103 Use Multilib LFS book with x32 libraries
104
105 config LFS_MULTILIB_ALL
106 bool "Multilib LFS on amd64 with i686 and x32 libraries"
107 help
108 Use Multilib LFS book with i686 and x32 libraries
109
110 endchoice
111
112 config MULTILIB
113 string
114 default "default" if LFS_MULTILIB_NO
115 default "ml_32" if LFS_MULTILIB_I686
116 default "ml_x32" if LFS_MULTILIB_X32
117 default "ml_all" if LFS_MULTILIB_ALL
118
119 #--- End BOOK version
120
121 choice
122 prompt "Build method"
123 default BUILD_CHROOT
124 help
125 What build method should be used: a chroot jail or minimal boot
126 system. Review the clfs-ng branch chap6 "TO BOOT OR CHROOT" for
127 a full explanation.
128
129 config BUILD_CHROOT
130 bool "chroot"
131
132 config BUILD_BOOT
133 bool "boot"
134 endchoice
135
136 config METHOD
137 string
138 default "chroot" if BUILD_CHROOT
139 default "boot" if BUILD_BOOT
140
141 config BOOT_CONFIG
142 string "BOOT kernel config file (mandatory)"
143 default "***EDIT ME***"
144 depends on BUILD_BOOT
145 help
146 If METHOD=boot, location of boot-kernel config file
147 The config file will be copied to ${BUILD_DIR}/sources
148 and renamed 'bootkernel-config'
149 NOTE: this setting is required
150
151 #--- blfs-tool Support
152 config BLFS_TOOL
153 bool "Add blfs-tool support"
154 default n
155 depends on !BOOK_BLFS
156 help
157 Activating this option will install additional packages needed
158 to use blfs tools after booting the new system.
159 The blfs-tool files will be installed under $BUILD_DIR/blfs_root
160 (see below).
161 After booting the new xLFS system, but before using the blfs tools,
162 you should create a user account, move the /blfs_root directory
163 to that user's home, and change its ownership to that of the user.
164 Also, be sure to give the user read and write access on the
165 $TRACKING_DIR directory and the files that it contains.
166 Don't forget to configure sudo properly on the new system.
167
168 config DUMMY # Avoid indenting the items below
169 bool
170
171 if BLFS_TOOL
172 menu "blfs-tool dependencies"
173
174 config DEP_LIBXML
175 bool "libxml2 (required)"
176 default y
177
178 config DEP_LIBXSLT
179 bool "libxslt (required)"
180 default y
181
182 config DEP_DBXML
183 bool "DocBook XML DTD (required)"
184 default y
185
186 config DEP_LYNX
187 bool "lynx (optional, for reading the generated book)"
188 default y
189
190 config DEP_SUDO
191 bool "sudo (recommended)"
192 default y
193
194 config DEP_WGET
195 bool "wget (recommended)"
196 default y
197
198 config DEP_GPM
199 bool "GPM (optional, see help)"
200 default n
201 help
202 if you install gpm, it will be started
203 automatically on boot. It allows copy-paste
204 while Xorg is not installed.
205
206 config DEP_GIT
207 bool "GIT client (optional, see help)"
208 default n
209 help
210 Git is needed for updating the book
211 sources. You do not need it if building a
212 stable book.
213
214 endmenu
215
216 choice
217 prompt "BLFS Release"
218 default BLFS_GIT
219
220 config BLFS_GIT
221 bool "BLFS GIT"
222 help
223 Current development version as in trunk
224
225 config BLFS_WORKING_COPY
226 bool "BLFS working copy"
227 help
228 A local working copy of the BLFS book.
229
230 config BLFS_BRANCH
231 bool "BLFS Branch or stable book"
232 help
233 A supported GIT branch or stable (tag) book release
234 endchoice
235
236 config BLFS_WC_LOCATION
237 string "Location of the local BLFS working copy (mandatory)"
238 default "**EDIT ME**"
239 depends on BLFS_WORKING_COPY
240 help
241 Full path to the BLFS book working copy
242
243 config BLFS_BRANCH_ID
244 string "BLFS Book Version (mandatory)"
245 default "**EDIT ME**"
246 depends on BLFS_BRANCH
247 help
248 Can be any branch, tag, or abbreviated (or not) commit sha.
249 endif
250 #--- End blfs-tool Support
251
252 #--- BLFS params (Used for installing the tools, either after a jhalfs run
253 # or directly)
254 config BLFS_ROOT
255 string "Root of the tools directory (see help)"
256 default "/blfs_root"
257 depends on BLFS_TOOL || BOOK_BLFS
258 help
259 Path to the directory where all required files and scripts
260 will be stored.
261
262 This path must begin with a slash, and:
263 - is relative to the user's HOME directory when installing the
264 blfs tools on an already existing LFS system.
265 - is relative to the root of the build directory (`/' in chroot)
266 when adding the tools after a jhalfs run
267
268 CAUTION: this directory will be removed if it already exists.
269
270 config BLFS_XML
271 string "BLFS sources directory (internal parameter)"
272 default "blfs-xml"
273 depends on BLFS_TOOL || BOOK_BLFS
274 help
275 The directory name under $BLFS_ROOT where the BLFS
276 book sources will be copied or checked out. Do not change that
277 unless you know what you are doing...
278
279 config LFS_XML
280 string "LFS sources directory (internal parameter)"
281 default "lfs-xml"
282 depends on BLFS_TOOL || BOOK_BLFS
283 help
284 The directory name under $BLFS_ROOT where the LFS
285 book sources will be copied or checked out. Do not change that
286 unless you know what you are doing...
287
288 choice
289 prompt "LFS Release"
290 default LFS_relGIT
291 depends on BOOK_BLFS
292
293 config LFS_relGIT
294 bool "LFS GIT"
295 help
296 Current development version as in trunk
297
298 config LFS_WORKING_COPY
299 bool "LFS working copy"
300 help
301 A local working copy of the LFS book.
302
303 config LFS_BRANCH
304 bool "LFS Branch or stable book"
305 help
306 A supported GIT branch or stable (tag) book release
307 endchoice
308
309 config BLFS_LFS_BOOK
310 string "Location of the local LFS working copy (mandatory)"
311 default "**EDIT ME**"
312 depends on LFS_WORKING_COPY
313 help
314 Full path to the LFS book working copy"
315
316 config BLFS_LFS_BRANCH_ID
317 string "LFS Book Version (mandatory)"
318 default "**EDIT ME**"
319 depends on LFS_BRANCH
320 help
321 Any branch, tag or abbreviated (or not) commit sha.
322 # End of BLFS parameters
323
324 #--- Custom Tools support
325 config CUSTOM_TOOLS
326 depends on !BOOK_BLFS
327 bool "Add custom tools support"
328 default n
329 help
330 Activating this option additional packages you create
331 will be installed after finished the xLFS system build.
332 #--- End Custom Tools support
333
334 #--- This directory is needed for blfs tools installation and custom tools
335 # As well.
336 config TRACKING_DIR
337 string "Installed packages database directory"
338 default "/var/lib/jhalfs/BLFS"
339 depends on BOOK_BLFS || BLFS_TOOL || CUSTOM_TOOLS
340 help
341 Full path to the directory where the database of
342 installed packages will be created.
343
344 If the blfs tools are installed on a running xLFS system,
345 the user must have enough privileges to create this directory.
346 It may be necessary to create the /var/lib/jhalfs directory as
347 root, and make it writable by the user before running this tool.
348
349 If you are installing the blfs tools as part of an xLFS build
350 and/or using the customized scripts feature, you will
351 need to fix this directory's permissions after booting
352 the new system.
353
354 Note that the user who will build the packages must
355 have read and write access to this directory.
356
357#--- End BOOK Settings
358endmenu
359
360menu "General Settings"
361depends on !BOOK_BLFS
362
363 #--- LFS User Account
364
365 config LUSER
366 string
367 default "lfs"
368
369 config LGROUP
370 string
371 default LUSER
372
373 config LHOME
374 string
375 default "/home"
376
377 #--- End Set User Account
378
379 config BUILDDIR
380 string "Build Directory"
381 default "/mnt/build_dir"
382 help
383 #-- The directory where the created system will be located.
384 # NOTE: A working directory named jhalfs will be created
385 # here, so ensure this does not conflict with the jhalfs
386 # source directory.
387
388 config GETPKG
389 bool "Retrieve source files"
390 default n
391 help
392 #-- Download all packages and patches required by the selected book
393 # NOTE: Looks for files in the local archive defined by SRC_ARCHIVE
394 # first and if necessary retrieves them from the 'net.
395 # Files will be transferred to $BUILDDIR/sources.
396
397 config SRC_ARCHIVE
398 string "Package Archive Directory"
399 default "$SRC_ARCHIVE"
400 depends on GETPKG
401 help
402 #-- A local archive for packages/files (not $BUILDDIR/sources)
403 # Any missing file will be downloaded and archived here,
404 # if the user has the right privileges.
405
406 config RETRYSRCDOWNLOAD
407 bool "Retry on 'connection refused' failure"
408 default n
409 depends on GETPKG
410 help
411 #-- Attempt to download a source package again if it fails
412 # with a 'connection refused' error. This can happen on
413 # servers that are overloaded.
414
415 config RETRYDOWNLOADCNT
416 int "Number of retry attempts on download failures"
417 default 20
418 depends on GETPKG
419 help
420 #-- Number of times to retry a failed download.
421
422 config DOWNLOADTIMEOUT
423 int "Download timeout (in seconds)"
424 default 30
425 depends on GETPKG
426 help
427 #-- Number of seconds to wait for a download to start before
428 # timing out.
429
430 config SERVER
431 string "FTP mirror"
432 default "http://ftp.osuosl.org"
433 depends on GETPKG
434 help
435 #-- FTP mirror to download packages and patches if not found
436 # in $SRC_ARCHIVE
437 # As a last resort, the files will downloaded from upstream,
438 # if possible.
439
440 config RUNMAKE
441 bool "Run the makefile"
442 default n
443 help
444 #-- Automatically run the makefile once it has been created
445
446 config CLEAN
447 bool "Rebuild files"
448 default n
449 help
450 #-- Clean the build directory before performing any other task.
451 # The directory is cleaned only if it was populated by a
452 # previous JHALFS run.
453
454#--- End General Settings
455endmenu
456
457menu "Build Settings"
458depends on !BOOK_BLFS
459
460 #--- Test Suites
461 config CONFIG_TESTS
462 bool "Run testsuites"
463 default y
464 help
465 #-- Run test suites
466 # If you select 'y' here:
467 # You will have to select between:
468 # - Only critical final system testsuites
469 # - All final system testsuites
470 # You will be prompted also about the "flavour" of the
471 # testsuites run:
472 # - Don't stop on test suite failures
473 # - Abort the build at the first test suite failure
474 #
475 # Note that in any case, all the test instructions will
476 # be generated. Those which are not wanted will be commented
477 # out. If you select 'n' here, the commented test instructions
478 # do not stop on test suite failures.
479
480 menu "Test settings"
481 depends on CONFIG_TESTS
482 choice
483 prompt "Tests level"
484 default TST_1
485
486 config TST_1
487 bool "Only final system critical testsuites"
488 help
489 #-- Critical tests:
490 # Only Glibc, Binutils, GMP, MPFR, MPC and GCC
491 # testsuites for final system. The others are commented
492 # out.
493
494 config TST_2
495 bool "All final system testsuites"
496 help
497 #-- All final system test suites:
498 # Test instructions for the temporary tools (if available)
499 # are commented out.
500
501 endchoice
502
503 choice
504 prompt "Flavour"
505
506 config NO_BOMB
507 bool "Don't stop on test failures"
508
509 config BOMB
510 bool "Abort the build on the first test failure"
511 endchoice
512
513 endmenu # test settings
514
515 config TEST
516 int
517 default "0" if !CONFIG_TESTS
518 default "1" if TST_1
519 default "2" if TST_2
520
521 config BOMB_TEST
522 bool
523 default n if NO_BOMB
524 default y if BOMB
525 #--- End Test Suites
526
527 #--- Package Management
528 config PKGMNGT
529 bool "Package management"
530 depends on BOOK_LFS || BOOK_LFS_SYSD
531 default n
532 help
533 #-- Use package management
534 #
535 # If set, you'll have to choose between
536 # two package management styles:
537 # - Build and install:
538 # the packages in the final phase are built
539 # in a separate directory, PKG_DEST.
540 # You should provide a bash function for
541 # packaging and installing the package.
542 # - Preload a library before install:
543 # Run the install instructions inside a
544 # wrapper command, which monitors the
545 # installed files.
546 #
547 # Also, you have to provide the instructions
548 # to build the package manager during the
549 # temporary tools phase, in the form of a
550 # sect1 of the book identical to a package
551 # sect1. See README.PACKAGE_MANAGEMENT
552 choice
553 depends on PKGMNGT
554 prompt "Package management style"
555 default PKG_PACK
556
557 config PKG_PACK
558 bool "Build and pack (pacman or dpkg style)"
559
560 config LIB_LOAD
561 bool "Preload a library before installing (porg style)"
562 endchoice
563
564 config WRAP_INSTALL
565 bool
566 default y if LIB_LOAD
567 default n if PKG_PACK
568 #--- End package management
569
570 #--- Installed files logs
571 config INSTALL_LOG
572 bool "Create a log of installed files for each package"
573 default n
574 help
575 #-- Select this if you want to create logs of the files
576 # installed by each package on the final system.
577
578 #--- End Installed files logs
579
580 config STRIP
581 bool "Strip Installed Binaries/Libraries"
582 default n
583
584 config DEL_LA_FILES
585 bool "Remove libtool .la files"
586 default y
587 help
588 #-- Remove files libxxx.la installed by libtool. For a rationale
589 # see https://blog.flameeyes.eu/tags/lafiles/
590
591 config NO_PROGRESS_BAR
592 bool "DO NOT use/display progress_bar"
593 default n
594 help
595 #-- Do not use the progress bar routine. On slower machines
596 # this function consumes precious CPU cycles.
597
598#--- End Build Settings
599endmenu
600
601menu "System configuration"
602 depends on !BOOK_BLFS
603
604 #--- FSTAB
605 config HAVE_FSTAB
606 bool "Use a custom fstab file"
607 default n
608 help
609 #-- Select this if you have an fstab file with entries
610 # for the target system
611
612 config FSTAB
613 string "Fstab file (optional)"
614 default "***EDIT ME***"
615 depends on HAVE_FSTAB
616 help
617 #-- The location of fstab file (if empty, a template is created)
618 #--- End FSTAB
619
620 #--- Kernel
621 config CONFIG_BUILD_KERNEL
622 bool "Build the kernel"
623 default n
624 help
625 #-- Select this option if you wish to build the kernel.
626 #
627 # You will be prompted for the full path to the .config
628 # file. It will be copied to the 'sources' directory and
629 # renamed kernel-config
630
631 config CONFIG
632 string "Kernel config file"
633 default "***EDIT ME***"
634 depends on CONFIG_BUILD_KERNEL
635 help
636 #-- Fully qualified path to a kernel config file
637 # The config file will be copied to ${BUILD_DIR}/sources
638 # and renamed 'kernel-config'
639 #--- End Kernel
640
641 config NCURSES5
642 bool "Install non-wide-character ncurses"
643 default n
644 depends on BOOK_LFS || BOOK_LFS_SYSD
645 help
646 #-- Install the optional non wide character ncurses5 library
647
648 config TIMEZONE
649 string "TimeZone"
650 default "GMT"
651 help
652 #-- The timezone as output by tzselect
653 # This will be copied to /etc/localtime
654
655 config LANG
656 string "Language"
657 default "$LANG"
658 help
659 #-- LANG variable set in /etc/profile
660 # See http://sourceware.org/git/?p=glibc.git;a=blob;f=localedata/SUPPORTED
661 # for values (or the file localedata/SUPPORTED in glibc tarball)
662
663 config FULL_LOCALE
664 bool "Install the full set of locales"
665 default n
666 help
667 #-- If set to y, the full set of supported locales
668 # will be installed. Otherwise, only the minimal set
669 # necessary for the tests will be installed,
670 # together with the locale associated with the
671 # LANG you have chosen, if not in the minimal set.
672
673 #--- Groff page
674 choice
675 prompt "Groff page size"
676 default PAGE_LETTER
677 help
678 #-- Page definition for groff: letter or A4
679
680 config PAGE_LETTER
681 bool "letter"
682
683 config PAGE_A4
684 bool "A4"
685 endchoice
686
687 config PAGE
688 string
689 default "letter" if PAGE_LETTER
690 default "A4" if PAGE_A4
691 #--- End Groff page
692
693 config HOSTNAME
694 string "Hostname (see help)"
695 default "**EDITME**"
696 help
697 If you are on a public network, use the hostname given to you by
698 your institution, or corporation, etc. If your network is private,
699 that is, behind a firewall such as a box to connect to your ISP,
700 you can choose anything you'd like. Combined with the domain name
701 "local", you have the possibility to access your computer by name
702 instead of address on the private network (see RFC 6762 and
703 https://www.howtogeek.com/167190/).
704
705 menu "Network configuration"
706 config INTERFACE
707 string "netword card name"
708 default "eth0"
709 help
710 eth0 is used in most cases. Virtual interfaces may get other
711 names (for example enp0s3 for the default network stack in qemu).
712 Systemd may also rename network interfaces according to their
713 bus addresses.
714 config IP_ADDR
715 string "Static IP address"
716 default "10.0.2.9"
717 help
718 The default here is for a virtual interface in qemu. Private
719 networks have addresses in the range 10.x.x.x or 192.168.x.x.
720 You have to know your network prefix. Then the last figure
721 may be anything you like.
722
723 config GATEWAY
724 string "Gateway"
725 default "10.0.2.2"
726 help
727 Again, this default is for a qemu network stack. Usually, the
728 gateway is the address of your firewall.
729 config PREFIX
730 string "Subnet prefix"
731 default "24"
732 help
733 Again, this default is for a qemu network stack, but is also
734 the most used in private networks.
735 config BROADCAST
736 string "Broadcast address"
737 default "10.0.2.255"
738 config DOMAIN
739 string "Domain name (see help)"
740 default "local"
741 help
742 Domain Name:
743 Doamin names are registered, so if your computer is on a public
744 network, you cannot use any name you'd like. On a public
745 network, you should have been given a domain name by
746 your corporation, institution, etc.
747 If your network is really private, that is behind a firewall
748 such as a box for connecting to an ISP, you can choose any
749 domain you'd like. You can also opt for "local", see RFC 6762,
750 or "something.test", see RFC 6761.
751 config DNS1
752 string "Primary Name server"
753 default "10.0.2.3"
754 config DNS2
755 string "Secondary Name server"
756 default "8.8.8.8"
757 endmenu # Network configuration
758
759 menu "Console configuration"
760 config FONT
761 string "Console font"
762 default "lat0-16"
763 help
764 Unicode mode is set by default. Setting FONT_MAP, FONT_UNIMAP,
765 etc, must be done manually.
766 config KEYMAP
767 string "Keymap name"
768 default "us"
769 config LOCAL
770 boolean "Hardware clock is set to local time"
771 default n
772 help
773 If the harware clock is set to local time, answer yes,
774 If it is set to UTC, answer no
775 config LOG_LEVEL
776 string "Default log level (1-8)"
777 default "4"
778 depends on BOOK_LFS
779 help
780 This can be changed using dmesg. 1 means "no message",
781 8 shows every message sent by the kernel, which is very
782 noisy. The default at boot time is 7, which is quite
783 noisy too.
784 endmenu # Console configuration
785
786endmenu #--- System configuration
787
788menu "Advanced Features"
789depends on !BOOK_BLFS
790
791 config REPORT
792 bool "Create SBU and disk usage report"
793 default y
794
795 config SAVE_CH5
796 bool "Save Chapter 5 work"
797 depends on BOOK_LFS || BOOK_LFS_SYSD
798 default n
799 help
800 Save the state of jhalfs at the end of chapter 5:
801
802 if you tick this item, the whole $LFS directory is
803 saved when chapter 5 is finished. It'll be in an xz
804 compressed tarball in the $LFS/jhalfs directory
805
806 #--- ICA
807 config COMPARE
808 bool "Run comparison analysis on final stage"
809 default n
810 help
811 #-- Should an iterative comparison analysis be performed?
812 #
813 # Unless you are familiar with ICA, do not
814 # select this option
815 #
816 # ICA is an analysis tool for comparing one
817 # build to the next. Builds mays differ from one iteration
818 # to another due to the build order and this tool try
819 # to ferret out those differences by examining the stored
820 # build logs and binary files.
821 #
822 # The scripts are well commented and can be found in ./extras/*
823 #
824
825 config ITERATIONS
826 int "Number of test runs (2,3,4,5)" if COMPARE
827 depends on COMPARE
828 range 2 5
829 default 3
830
831 config RUN_ICA
832 bool
833 default y if COMPARE
834
835 #--- End ICA
836
837 #--- Optimizations
838 config CONFIG_OPTIMIZE
839 bool "Optimization and parallelization"
840 default n
841 help
842 # Opens a menu for various optimization settings:
843 # Actual optimization flags MUST be defined in ./optimize/*
844 # before activating this option.
845 #
846 # WARNING: The use of build optimizations may lead to build issues.
847 # If the system doesn't work as expected, please rebuild
848 # without optimizations before asking for support.
849 menu "Optimization settings"
850 depends on CONFIG_OPTIMIZE
851
852 config N_PARALLEL
853 int "Number of parallel `make' jobs"
854 default 1
855 help
856 #-- The usual recommandation is (number of CPU cores)+1
857 # Do not set for meaningful SBU calculations.
858
859 choice
860 prompt "Optimization level"
861 default OPT_1
862 help
863 #-- Optimization values are set in optimize/* files
864
865 config OPT_1
866 bool "Final system only"
867
868 config OPT_2
869 bool "Both temp tools and final system"
870
871 endchoice
872
873 config REALSBU
874 bool "Build Binutls pass1 without optimization (Real SBU)"
875 depends on OPT_2
876 default n
877 help
878 #-- Use -j1 in make invokation for Binutils pass1 to
879 # get a valid SBU value.
880
881 endmenu # Optimization settings
882 config OPTIMIZE
883 int
884 default "0" if !CONFIG_OPTIMIZE
885 default "1" if OPT_1
886 default "2" if OPT_2
887
888 #--- End Optimizations
889
890 #-- Internal Settings
891 menu "Internal Settings (WARNING: for jhalfs developers only)"
892
893 config SCRIPT_ROOT
894 string "Scripts root"
895 default "jhalfs"
896
897 config JHALFSDIR
898 string "jhalfs directory"
899 default "$BUILDDIR/$SCRIPT_ROOT"
900
901 config LOGDIRBASE
902 string "Build logs directory basename"
903 default "logs"
904
905 config LOGDIR
906 string "Build logs directory"
907 default "$JHALFSDIR/$LOGDIRBASE"
908
909 config TESTLOGDIRBASE
910 string "Test suites logs directory basename"
911 default "test-logs"
912
913 config TESTLOGDIR
914 string "Test suites logs directory"
915 default "$JHALFSDIR/$TESTLOGDIRBASE"
916
917 config FILELOGDIRBASE
918 string "Installed files logs directory basename"
919 default "installed-files"
920
921 config FILELOGDIR
922 string "Installed files logs directory"
923 default "$JHALFSDIR/$FILELOGDIRBASE"
924
925 config ICALOGDIR
926 string "ICA logs directory"
927 default "$LOGDIR/ICA"
928
929 config MKFILE
930 string "Makefile"
931 default "$JHALFSDIR/Makefile"
932
933 config XSL
934 string "XSL stylesheet"
935 default "lfs.xsl"
936
937 config PKG_LST
938 string "Package contents list"
939 default "unpacked"
940
941 #--- End Internal Settings
942 endmenu
943
944#--- End Advanced Features
945endmenu
946
947config REBUILD_MAKEFILE
948# depends on !BOOK_BLFS
949 bool "Rebuild the Makefile (see help)"
950 default n
951 help
952 #-- Rebuild the Makefile
953 #
954 # This option allows to rebuild the Makefile after
955 # customizing the base system build scripts.
956 #
957 # See README.CUSTOM for more info about this feature.
958 # Note that you should do that after configuring a jhalfs
959 # build, and only if you need changing the build scripts order
960 # or add a new one.
Note: See TracBrowser for help on using the repository browser.