source: Config.in@ 607ef21

ablfs-more legacy trunk
Last change on this file since 607ef21 was 506120ee, checked in by Pierre Labastie <pierre@…>, 7 years ago

install-blfs-tools.sh:

  • Add instructions to retrieve and parse LFS book into packages.xml
  • Property mode set to 100644
File size: 40.9 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 Sys V 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_CLFS
21 bool "Cross-Compiled Linux From Scratch"
22 help
23 Set up the tools to build CLFS.
24
25 config BOOK_CLFS2
26 bool "Cross-Compiled Linux From Scratch (Sysroot method)"
27 help
28 Set up the tools to build CLFS by the sysroot method.
29
30 config BOOK_CLFS3
31 bool "Cross-Compiled Linux From Scratch (Embedded Systems)"
32 help
33 Set up the tools to build CLFS with tools for embedded systems.
34
35 config BOOK_BLFS
36 bool "Beyond Linux From Scratch (see help)"
37 help
38 if the (C)LFS system has already been built, install the tools
39 to build BLFS packages.
40 endchoice
41
42 choice
43 depends BOOK_BLFS
44 prompt "Init system"
45
46 config BLFS_SYSV
47 bool "BLFS Sys V"
48 help
49 Extract the Sys V flavour of the BLFS book
50
51 config BLFS_SYSD
52 bool "BLFS systemd"
53 help
54 Extract the systemd flavour of the BLFS book
55
56 endchoice
57
58 config INITSYS
59 string
60 default "sysv" if BOOK_LFS || BLFS_SYSV
61 default "systemd" if BOOK_LFS_SYSD || BLFS_SYSD
62
63 config PROGNAME
64 string
65 default "lfs" if BOOK_LFS || BOOK_LFS_SYSD
66 default "clfs" if BOOK_CLFS
67 default "clfs2" if BOOK_CLFS2
68 default "clfs3" if BOOK_CLFS3
69
70 config RUN_ME
71 string
72 default "./jhalfs run" if BOOK_LFS || BOOK_LFS_SYSD || BOOK_CLFS || \
73 BOOK_CLFS2 || BOOK_CLFS_3
74 default "./install-blfs-tools.sh auto" if BOOK_BLFS
75 #--- End BOOK/script
76
77 #--- Book version
78 choice
79 prompt "Release"
80 default relSVN if BOOK_LFS || BOOK_LFS_SYSD || BOOK_BLFS
81 default relGIT if BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
82
83 config relSVN
84 bool "SVN"
85 depends on BOOK_LFS || BOOK_BLFS || BOOK_LFS_SYSD
86 help
87 Current development version as in trunk
88
89 config relGIT
90 bool "GIT"
91 depends on BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
92 help
93 Current development git master branch
94
95 config WORKING_COPY
96 bool "Working Copy"
97 help
98 A local working copy
99
100 config BRANCH
101 bool "Branch or stable book" if !BOOK_CLFS2 && !BOOK_CLFS3
102 help
103 A supported SVN/GIT branch or stable released book
104 endchoice
105
106 config BRANCH_ID
107 string "Branch (preceded by \"branch-\"), stable Version, or tag"
108 default "**EDIT ME**"
109 depends BRANCH
110 help
111 A list of valid branches and stable book IDs is available at
112 http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
113
114 Enter "branch-XXX" for branch XXX, or just "YYY" for stable (or tag)
115 YYY version.
116
117 config BOOK
118 string "Loc of working copy (mandatory)"
119 default "**EDIT ME**"
120 depends WORKING_COPY
121 help
122 The full path to a local copy of the book XML sources
123
124 #--- End BOOK version
125
126 #--- CLFS specific params
127 choice
128 prompt "Target architecture"
129 default ARCH_X86
130 depends BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
131 help
132 Choose the target system base architecture
133
134 config ARCH_X86
135 bool "x86"
136
137 config ARCH_MIPS
138 bool "mips" if !BOOK_CLFS2
139
140 config ARCH_PPC
141 bool "ppc" if BOOK_CLFS
142
143 config ARCH_SPARC
144 bool "sparc" if BOOK_CLFS
145
146 config ARCH_ALPHA
147 bool "alpha" if !BOOK_CLFS3
148
149 config ARCH_ARM
150 bool "arm" if !BOOK_CLFS
151
152 config ARCH_HPPA
153 bool "hppa" if BOOK_CLFS2
154 endchoice
155
156 choice
157 prompt "Hardware Platform"
158 depends BOOK_CLFS3 && ARCH_MIPS
159 default PLATFORM_GENERIC
160 help
161 Choose a destination platform
162 Platform specific files will be included
163
164 config PLATFORM_GENERIC
165 bool "Generic platform"
166
167 config PLATFORM_WRT
168 bool "WRT - MIPS based wireless router" if ARCH_MIPS
169 endchoice
170
171 choice
172 prompt "Library"
173 depends (BOOK_CLFS && !ARCH_ALPHA) || (BOOK_CLFS3 && ARCH_MIPS)
174 default DATA_32
175 help
176 Choose the target system libraries type
177
178 config DATA_32
179 bool "32-bit"
180
181 config DATA_64
182 bool "64-bit"
183
184 config DATA_MULTI
185 bool "multilib" if !(BOOK_CLFS3 && ARCH_MIPS )
186 endchoice
187
188 choice
189 prompt "Processor type"
190 depends (BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3) && ((ARCH_X86 && !(DATA_64 || DATA_MULTI)) || ARCH_MIPS || ARCH_HPPA || ARCH_ALPHA || (ARCH_SPARC && (DATA_64 || DATA_MULTI)) || (ARCH_ARM && BOOK_CLFS3))
191 help
192 Choose the target system processor
193
194 config PROC_i486
195 bool "486 Compatibles" if ARCH_X86
196
197 config PROC_i586
198 bool "Pentium, K6, 586 Compatibles" if ARCH_X86
199
200 config PROC_i686
201 bool "Pentium II, Pentium III, Pentium 4, Athlon, Duron" if ARCH_X86
202
203 config PROC_mipsel
204 bool "MIPS Little Endian" if ARCH_MIPS
205
206 config PROC_mips
207 bool "MIPS Big Endian" if ARCH_MIPS
208
209 config PROC_unknown
210 bool "Unknown" if ARCH_HPPA || ARCH_ALPHA
211
212 config PROC_hppa1
213 bool "PA 7000 Series" if ARCH_HPPA
214
215 config PROC_hppa2
216 bool "PA 8000 Series" if ARCH_HPPA
217
218 config PROC_EV5
219 bool "EV5 Series" if ARCH_ALPHA
220
221 config PROC_EV56
222 bool "EV56 Series" if ARCH_ALPHA
223
224 config PROC_PCA56
225 bool "PCA56 Series" if ARCH_ALPHA
226
227 config PROC_PCA57
228 bool "PCA57 Series" if ARCH_ALPHA
229
230 config PROC_EV6
231 bool "EV6 Series" if ARCH_ALPHA
232
233 config PROC_EV67
234 bool "EV67 Series" if ARCH_ALPHA
235
236 config PROC_EV68
237 bool "EV68 Series" if ARCH_ALPHA
238
239 config PROC_ARM
240 bool "Generic arm, little endian" if ARCH_ARM
241
242 config PROC_ARM5L
243 bool "Generic arm, version 5, little endian" if ARCH_ARM
244
245 config PROC_ARM5B
246 bool "Generic arm, version 5, big endian" if ARCH_ARM
247
248 config PROC_ULTRA1
249 bool "UtraSparc" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
250
251 config PROC_ULTRA2
252 bool "UtraSparc2" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
253
254 config PROC_ULTRA3
255 bool "UtraSparc3" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
256 endchoice
257
258 choice
259 prompt "MIPS 64 ABI"
260 depends BOOK_CLFS3 && ARCH_MIPS && DATA_64
261 default ABI_64
262 help
263 Choose the target system ABI to use
264
265 config ABI_32
266 bool "o32"
267
268 config ABI_N32
269 bool "n32"
270
271 config ABI_64
272 bool "n64"
273 endchoice
274
275 config TARGET
276 string
277 default "i486-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i486
278 default "i586-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i586
279 default "i686-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i686
280
281 default "i486-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i486
282 default "i586-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i586
283 default "i686-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i686
284
285 default "x86_64-unknown-linux-gnu" if ARCH_X86 && (DATA_64 || DATA_MULTI)
286
287 default "mipsel-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mipsel && DATA_32
288 default "mips-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mips && DATA_32
289 default "mips64el-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mipsel && (DATA_64 || DATA_MULTI)
290 default "mips64-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mips && (DATA_64 || DATA_MULTI)
291
292 default "mipsel-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mipsel && DATA_32
293 default "mips-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_32
294 default "mips64el-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mipsel && DATA_64
295 default "mips64-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_64
296
297 default "powerpc-unknown-linux-gnu" if ARCH_PPC && DATA_32
298 default "powerpc64-unknown-linux-gnu" if ARCH_PPC && (DATA_MULTI || DATA_64)
299
300 default "sparc-unknown-linux-gnu" if ARCH_SPARC && DATA_32
301 default "sparc64-unknown-linux-gnu" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
302
303 default "hppa-unknown-linux-gnu" if PROC_unknown && ARCH_HPPA
304 default "hppa1.1-unknown-linux-gnu" if PROC_hppa1
305 default "hppa2.0-unknown-linux-gnu" if PROC_hppa2
306
307 default "arm-unknown-linux-gnueabi" if ARCH_ARM && BOOK_CLFS2
308
309 default "arm-unknown-linux-uclibc" if PROC_ARM
310 default "armv5l-unknown-linux-uclibc" if PROC_ARM5L
311 default "armv5b-unknown-linux-uclibc" if PROC_ARM5B
312
313 default "alpha-unknown-linux-gnu" if PROC_unknown && ARCH_ALPHA
314 default "alphaev5-unknown-linux-gnu" if PROC_EV5
315 default "alphaev56-unknown-linux-gnu" if PROC_EV56
316 default "alphapca56-unknown-linux-gnu" if PROC_PCA56
317 default "alphapca57-unknown-linux-gnu" if PROC_PCA57
318 default "alphaev6-unknown-linux-gnu" if PROC_EV6
319 default "alphaev67-unknown-linux-gnu" if PROC_EV67
320 default "alphaev68-unknown-linux-gnu" if PROC_EV68
321
322 config TARGET32
323 string
324 depends DATA_MULTI
325 default "i686-pc-linux-gnu" if ARCH_X86
326 default "mipsel-unknown-linux-gnu" if PROC_mipsel
327 default "mips-unknown-linux-gnu" if PROC_mips
328 default "sparc-unknown-linux-gnu" if ARCH_SPARC
329 default "powerpc-unknown-linux-gnu" if ARCH_PPC
330
331 config PLATFORM
332 string
333 default "GENERIC" if (!BOOK_CLFS3) || PLATFORM_GENERIC
334 default "WRT - Wireless Router" if PLATFORM_WRT
335
336 config SPARC64_PROC
337 string
338 default "none" if !(ARCH_SPARC && (DATA_64 || DATA_MULTI))
339 default "1" if PROC_ULTRA1
340 default "2" if PROC_ULTRA2
341 default "3" if PROC_ULTRA3
342
343 config ARCH
344 string
345 default "x86" if ARCH_X86 && (DATA_32 || BOOK_CLFS2 || BOOK_CLFS3)
346 default "x86_64" if ARCH_X86 && DATA_MULTI
347 default "x86_64-64" if ARCH_X86 && DATA_64
348
349 default "wrt" if PLATFORM_WRT && BOOK_CLFS3
350
351 default "mips" if ARCH_MIPS && (DATA_32 || BOOK_CLFS3)
352 default "mips64" if ARCH_MIPS && DATA_MULTI
353 default "mips64-64" if ARCH_MIPS && DATA_64 && BOOK_CLFS
354
355
356 default "ppc" if ARCH_PPC && DATA_32
357 default "ppc64" if ARCH_PPC && DATA_MULTI
358 default "ppc64-64" if ARCH_PPC && DATA_64
359
360 default "sparc" if ARCH_SPARC && DATA_32
361 default "sparc64" if ARCH_SPARC && DATA_MULTI
362 default "sparc64-64" if ARCH_SPARC && DATA_64
363
364 default "alpha" if ARCH_ALPHA
365 default "arm" if ARCH_ARM
366 default "hppa" if ARCH_HPPA
367
368 config MIPS_LEVEL
369 string
370 depends BOOK_CLFS3 && ARCH_MIPS
371 default "1" if DATA_32
372 default "3" if DATA_64
373
374 config ABI
375 string
376 depends BOOK_CLFS3
377 default "-m32" if ARCH_X86 || ARCH_ARM
378# default "-m64" if NO USED YET IN THE BOOK
379 default "-mabi=32" if ABI_32 || (ARCH_MIPS && DATA_32)
380 default "-mabi=n32" if ABI_N32
381 default "-mabi=64" if ABI_64
382
383 config ENDIAN
384 string
385 depends BOOK_CLFS3 && (ARCH_MIPS || ARCH_ARM)
386 default "little" if PROC_mipsel || PROC_ARM || PROC_ARM5L
387 default "big" if PROC_mips || PROC_ARM5B
388
389 choice
390 prompt "Build method"
391 depends BOOK_CLFS
392 help
393 What build method should be used: a chroot jail or minimal boot
394 system. Review the Cross-LFS book chap6 "TO BOOT OR CHROOT" for
395 a full explanation.
396
397 config BUILD_CHROOT
398 bool "chroot"
399
400 config BUILD_BOOT
401 bool "boot"
402 endchoice
403
404 config METHOD
405 string
406 default "chroot" if BUILD_CHROOT
407 default "boot" if BUILD_BOOT
408
409 config BOOT_CONFIG
410 string "BOOT kernel config file (mandatory)"
411 default "***EDIT ME***"
412 depends on BUILD_BOOT
413 help
414 If METHOD=boot, location of boot-kernel config file
415 The config file will be copied to ${BUILD_DIR}/sources
416 and renamed 'bootkernel-config'
417 NOTE: this setting is required
418 #--- End CLFS specific params
419
420 #--- blfs-tool Support
421 config BLFS_TOOL
422 bool "Add blfs-tool support"
423 default n
424 depends on !BOOK_CLFS3 && !BOOK_BLFS
425 help
426 Activating this option will install additional packages needed
427 to use blfs tools after booting the new system.
428 The blfs-tool files will be installed under $BUILD_DIR/blfs_root
429 (see below).
430 After booting the new xLFS system, but before using the blfs tools,
431 you should create a user account, move the /blfs_root directory
432 to that user's home, and change its ownership to that of the user.
433 Also, be sure to give the user read and write access on the
434 $TRACKING_DIR directory and the files that it contains.
435 Don't forget to configure sudo properly on the new system.
436
437 config DUMMY # Avoid indenting the items below
438 bool
439
440 if BLFS_TOOL
441 menu "blfs-tool dependencies"
442
443 config DEP_LIBXML
444 bool "libxml2 (required)"
445 default y
446
447 config DEP_LIBXSLT
448 bool "libxslt (required)"
449 default y
450
451 config DEP_DBXML
452 bool "DocBook XML DTD (required)"
453 default y
454
455 config DEP_LYNX
456 bool "lynx (optional, for reading the generated book)"
457 default y
458
459 config DEP_SUDO
460 bool "sudo (recommended)"
461 default y
462
463 config DEP_WGET
464 bool "wget (recommended)"
465 default y
466
467 config DEP_GPM
468 bool "GPM (optional, see help)"
469 default n
470 help
471 if you install gpm, it will be started
472 automatically on boot. You'll have to edit
473 /etc/sysconfig/mouse for your system
474
475 config DEP_SVN
476 bool "SVN client (optional, see help)"
477 default n
478 help
479 Subversion is needed for updating the book
480 sources. If you want ssl support, select
481 OPENSSL below.
482
483 config DEP_OPENSSL
484 bool "OPENSSL (optional, see help)"
485 default n
486 help
487 selecting OPENSSL here allows to build
488 subversion with ssl support, avoiding a later
489 recompilation
490
491 config DEP_PYTHON
492 bool "PYTHON 2 (optional, see help)"
493 default n
494 help
495 selecting PYTHON 2 here allows to build
496 the libxml2 and libxslt python modules,
497 avoiding a later recompilation
498
499 endmenu
500
501 choice
502 prompt "BLFS Release"
503 default BLFS_SVN
504
505 config BLFS_SVN
506 bool "BLFS SVN"
507 help
508 Current development version as in trunk
509
510 config BLFS_WORKING_COPY
511 bool "BLFS working copy"
512 help
513 A local working copy of the BLFS book.
514
515 config BLFS_BRANCH
516 bool "BLFS Branch or stable book"
517 help
518 A supported SVN branch or stable book release
519 endchoice
520
521 config BLFS_WC_LOCATION
522 string "Location of the local BLFS working copy (mandatory)"
523 default "**EDIT ME**"
524 depends on BLFS_WORKING_COPY
525 help
526 Full path to the BLFS book working copy
527
528 config BLFS_BRANCH_ID
529 string "BLFS Book Version (mandatory)"
530 default "**EDIT ME**"
531 depends on BLFS_BRANCH
532 help
533 A list of valid branches and stable book IDs is available at
534 http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks.
535 endif
536 #--- End blfs-tool Support
537
538 #--- BLFS params (Used for installing the tools, either after a jhalfs run
539 # or directly)
540 config BLFS_ROOT
541 string "Root of the tools directory (see help)"
542 default "/blfs_root"
543 depends on BLFS_TOOL || BOOK_BLFS
544 help
545 Path to the directory where all required files and scripts
546 will be stored.
547
548 This path must begin with a slash, and:
549 - is relative to the user's HOME directory when installing the
550 blfs tools on an already existing LFS system.
551 - is relative to the root of the build directory (`/' in chroot)
552 when adding the tools after a jhalfs run
553
554 CAUTION: this directory will be removed if it already exists.
555
556 config BLFS_XML
557 string "BLFS sources directory (internal parameter)"
558 default "blfs-xml"
559 depends BLFS_TOOL || BOOK_BLFS
560 help
561 The directory name under $BLFS_ROOT where the BLFS
562 book sources will be copied or checked out. Do not change that
563 unless you know what you are doing...
564
565 choice
566 prompt "LFS Release"
567 default LFS_SVN
568 depends BOOK_BLFS
569
570 config LFS_relSVN
571 bool "LFS SVN"
572 help
573 Current development version as in trunk
574
575 config LFS_WORKING_COPY
576 bool "LFS working copy"
577 help
578 A local working copy of the LFS book.
579
580 config LFS_BRANCH
581 bool "LFS Branch or stable book"
582 help
583 A supported SVN branch or stable book release
584 endchoice
585
586 config BLFS_LFS_BOOK
587 string "Location of the local LFS working copy (mandatory)"
588 default "**EDIT ME**"
589 depends on LFS_WORKING_COPY
590 help
591 Full path to the LFS book working copy"
592
593 config BLFS_LFS_BRANCH_ID
594 string "LFS Book Version (mandatory)"
595 default "**EDIT ME**"
596 depends on LFS_BRANCH
597 help
598 A list of valid branches and stable book IDs is available at
599 http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks.
600 # End of BLFS parameters
601
602 #--- Custom Tools support
603 config CUSTOM_TOOLS
604 depends !BOOK_BLFS
605 bool "Add custom tools support"
606 default n
607 help
608 Activating this option additional packages you create
609 will be installed after finished the xLFS system build.
610 #--- End Custom Tools support
611
612 #--- This direcotry is needed for blfs tools installation and custom tools
613 # As well.
614 config TRACKING_DIR
615 string "Installed packages database directory"
616 default "/var/lib/jhalfs/BLFS"
617 depends on BOOK_BLFS || BLFS_TOOL || CUSTOM_TOOLS
618 help
619 Full path to the directory where the database of
620 installed packages will be created.
621
622 If the blfs tools are installed on a running xLFS system,
623 the user must have enough privileges to create this directory.
624 It may be necessary to create the /var/lib/jhalfs directory as
625 root, and make it writable by the user before running this tool.
626
627 If you are installing the blfs tools as part of an xLFS build
628 and/or using the customized scripts feature, you will
629 need to fix this directory's permissions after booting
630 the new system.
631
632 Note that the user that will build the packages must
633 have read and write access to this directory.
634
635#--- End BOOK Settings
636endmenu
637
638menu "General Settings"
639depends !BOOK_BLFS
640
641 #--- Set User Account
642 config CONFIG_USER
643 bool "Change the default user/group and homedir for this build"
644 default n
645 help #-- Unprivileged user and group name
646 # If you do not have the privilege to create/delete
647 # users and groups you can specify your own
648 # user ID for the build
649 #
650 # default values for each book
651 # LFS lfs
652 # CLFS* clfs
653 # HLFS hlfs
654 #
655 # Also, if your host places users' home dirs into a
656 # directory other than /home you can specify it here.
657
658 config DEF_USER
659 string
660 default "lfs" if BOOK_LFS || BOOK_LFS_SYSD
661 default "clfs" if BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
662 default "hlfs" if BOOK_HLFS
663
664 config SET_USER
665 string "User account"
666 depends CONFIG_USER
667 default DEF_USER
668
669 config CONFIG_GROUP
670 bool "Set Group?"
671 default n
672 depends CONFIG_USER
673
674 config SET_GROUP
675 string "GROUP account"
676 depends CONFIG_GROUP
677 default DEF_USER
678
679 config CONFIG_HOME
680 bool "Set home dir?"
681 default n
682 depends CONFIG_USER
683
684 config SET_HOME
685 string "Path to the directory under which the user's home directory will be created"
686 depends CONFIG_HOME
687 default "/home"
688
689 config LUSER
690 string
691 default DEF_USER if !CONFIG_USER
692 default SET_USER if CONFIG_USER
693
694 config LGROUP
695 string
696 default LUSER if !CONFIG_GROUP
697 default SET_GROUP if CONFIG_GROUP
698
699 config LHOME
700 string
701 default "/home" if !CONFIG_HOME
702 default SET_HOME if CONFIG_HOME
703 #--- End Set User Account
704
705 config BUILDDIR
706 string "Build Directory"
707 default "/mnt/build_dir"
708 help
709 #-- The directory where the created system will be located.
710 # NOTE: A working directory named jhalfs will be created
711 # here, so ensure this does not conflict with the jhalfs
712 # source directory.
713
714 config GETPKG
715 bool "Retrieve source files"
716 default n
717 help
718 #-- Download all packages and patches required by the selected book
719 # NOTE: Looks for files in the local archive defined by SRC_ARCHIVE
720 # first and if necessary retrieves them from the 'net.
721 # Files will be transferred to $BUILDDIR/sources.
722
723 config SRC_ARCHIVE
724 string "Package Archive Directory"
725 default "$SRC_ARCHIVE"
726 depends GETPKG
727 help
728 #-- A local archive for packages/files (not $BUILDDIR/sources)
729 # Any missing file will be downloaded and archived here,
730 # if the user has the right privileges.
731
732 config RETRYSRCDOWNLOAD
733 bool "Retry on 'connection refused' failure"
734 default n
735 depends GETPKG
736 help
737 #-- Attempt to download a source package again if it fails
738 # with a 'connection refused' error. This can happen on
739 # servers that are overloaded.
740
741 config RETRYDOWNLOADCNT
742 int "Number of retry attempts on download failures"
743 default 20
744 depends GETPKG
745 help
746 #-- Number of times to retry a failed download.
747
748 config DOWNLOADTIMEOUT
749 int "Download timeout (in seconds)"
750 default 30
751 depends GETPKG
752 help
753 #-- Number of seconds to wait for a download to start before
754 # timing out.
755
756 config SERVER
757 string "FTP mirror"
758 default "http://ftp.osuosl.org"
759 depends GETPKG
760 help
761 #-- FTP mirror to download packages and patches if not found
762 # in $SRC_ARCHIVE
763 # As a last resort, the files will downloaded from upstream,
764 # if possible.
765
766 config RUNMAKE
767 bool "Run the makefile"
768 default n
769 help
770 #-- Automatically run the makefile once it has been created
771
772 config CLEAN
773 bool "Rebuild files"
774 default n
775 help
776 #-- Clean the build directory before performing any other task.
777 # The directory is cleaned only if it was populated by a
778 # previous JHALFS run.
779
780#--- End General Settings
781endmenu
782
783menu "Build Settings"
784depends !BOOK_BLFS
785
786 #--- Test Suites
787 config CONFIG_TESTS
788 bool "Run testsuites"
789 depends !BOOK_CLFS2 && !BOOK_CLFS3
790 default y
791 help
792 #-- Run test suites
793 #
794 # You will have to select between:
795 #
796 # - Only critical final system testsuites
797 # - All final system testsuites
798 # - Both temporary tools and final system testsuites
799 #
800 # HLFS and CLFS have no testsuites available in the
801 # temporary tools phase
802 # You will be prompted also about the "flavour" of the
803 # testsuites run:
804 #
805 # - Don't stop on test suite failures
806 # - Abort the build at the first test suite failure
807 #
808
809 menu "Test settings"
810 depends CONFIG_TESTS
811 choice
812 prompt "Tests level"
813 default TST_1
814
815 config TST_1
816 bool "Only final system critical testsuites"
817 help
818 #-- Critical tests:
819 # Only Glibc, Binutils, GMP, MPFR, MPC and GCC
820 # testsuites for final system
821
822 config TST_2
823 bool "All final system testsuites"
824
825 config TST_3
826 bool "All testsuites" if !BOOK_HLFS && !BOOK_CLFS
827 help
828 #-- All tests:
829 # Runs all the testsuites for both temporary tools
830 # and final system
831 endchoice
832
833 choice
834 prompt "Flavour"
835
836 config NO_BOMB
837 bool "Don't stop on test failures"
838
839 config BOMB
840 bool "Abort the build on the first test failure"
841 endchoice
842
843 config TEST
844 int
845 default "0" if !CONFIG_TESTS
846 default "1" if TST_1
847 default "2" if TST_2
848 default "3" if TST_3
849
850 config BOMB_TEST
851 bool
852 default n if NO_BOMB
853 default y if BOMB
854
855 #--- End Test Suites
856 endmenu # test settings
857
858 #--- Package Management
859 config PKGMNGT
860 bool "Package management"
861 depends BOOK_LFS || BOOK_LFS_SYSD
862 default n
863 help
864 #-- Use package management
865 #
866 # If set, you'll have to choose between
867 # two package management styles:
868 # - Build and install:
869 # the packages in the final phase are built
870 # in a separate directory, PKG_DEST.
871 # You should provide a bash function for
872 # packaing and installing the package.
873 # - Preload a library before install:
874 # Run the install instructions inside a
875 # wrapper command, which monitors the
876 # installed files.
877 #
878 # Also, you have to provide the instructions
879 # to build the package manager during the
880 # temporary tools phase, in the form of a
881 # sect1 of the book identical to a package
882 # sect1. See README.PACKAGE_MANAGEMENT
883 #
884 # For now, this only works with LFS
885 choice
886 depends PKGMNGT
887 prompt "Package management style"
888 default PKG_PACK
889
890 config PKG_PACK
891 bool "Build and pack (pacman or dpkg style)"
892
893 config LIB_LOAD
894 bool "Preload a library before installing (porg style)"
895 endchoice
896
897 config WRAP_INSTALL
898 bool
899 default y if LIB_LOAD
900 default n if PKG_PACK
901 #--- End package management
902
903 #--- Installed files logs
904 config INSTALL_LOG
905 bool "Create a log of installed files for each package"
906 default n
907 help
908 #-- Select this if you want to create logs of the files
909 # installed by each package on the final system.
910
911 #--- End Installed files logs
912
913 config STRIP
914 bool "Strip Installed Binaries/Libraries"
915 default n
916 depends on !BOOK_CLFS3
917
918 config NO_PROGRESS_BAR
919 bool "DO NOT use/display progress_bar "
920 default n
921 help
922 #-- Do not use the progress bar routine. On slower machines
923 # this function consumes precious CPU cycles.
924
925#--- End Build Settings
926endmenu
927
928menu "System configuration"
929 depends !BOOK_BLFS
930
931 #--- FSTAB
932 config HAVE_FSTAB
933 bool "Use a custom fstab file"
934 default n
935 help
936 #-- Select this if you have an fstab file with entries
937 # for the target system
938
939 config FSTAB
940 string "Fstab file (optional)"
941 default "***EDIT ME***"
942 depends on HAVE_FSTAB
943 help
944 #-- The location of fstab file (if empty, a template is created)
945 #--- End FSTAB
946
947 #--- Kernel
948 config CONFIG_BUILD_KERNEL
949 bool "Build the kernel"
950 default n
951 help
952 #-- Select this option if you wish to build the kernel.
953 #
954 # You will be prompted for the full path to the .config
955 # file. It will be copied to the 'sources' directory and
956 # renamed kernel-config
957
958 config CONFIG
959 string "Kernel config file"
960 default "***EDIT ME***"
961 depends on CONFIG_BUILD_KERNEL
962 help
963 #-- Fully qualified path to a kernel config file
964 # The config file will be copied to ${BUILD_DIR}/sources
965 # and renamed 'kernel-config'
966 #--- End Kernel
967
968 config VIMLANG
969 bool "Install vim-lang package"
970 default n
971 depends on !BOOK_HLFS && !BOOK_CLFS3
972 help
973 #-- Install the optional vim-lang package
974 # NOTE: This option is obsolete with the 7.3 release of Vim
975 # which is included in all recent releases of LFS.
976
977 config TIMEZONE
978 string "TimeZone"
979 default "GMT"
980 help
981 #-- The timezone as output by tzselect
982 # This will be copied to /etc/localtime
983
984 config LANG
985 string "Language"
986 default "$LANG"
987 help
988 #-- LANG variable set in /etc/profile
989 # See http://sourceware.org/git/?p=glibc.git;a=blob;f=localedata/SUPPORTED
990 # for values (or the file localedata/SUPPORTED in glibc tarball)
991
992 config FULL_LOCALE
993 bool "Install the full set of locales"
994 default n
995 help
996 #-- If set to y, the full set of supported locales
997 # will be installed. Otherwise, only the minimal set
998 # necessary for the tests will be installed,
999 # together with the locale associated with the
1000 # LANG you have chosen, if not in the minimal set.
1001
1002 #--- Groff page
1003 choice
1004 prompt "Groff page size"
1005 default PAGE_LETTER
1006 help
1007 #-- Page definition for groff: letter or A4
1008
1009 config PAGE_LETTER
1010 bool "letter"
1011
1012 config PAGE_A4
1013 bool "A4"
1014 endchoice
1015
1016 config PAGE
1017 string
1018 default "letter" if PAGE_LETTER
1019 default "A4" if PAGE_A4
1020 #--- End Groff page
1021
1022 config HOSTNAME
1023 string "Hostname (see help)"
1024 default "**EDITME**"
1025 help
1026 If you are on a public network, use the hostname given to you by
1027 your institution, or corporation, etc. If your network is private,
1028 that is, behind a firewall such as a box to connect to your ISP,
1029 you can choose anything you'd like. Combined with the domain name
1030 "local", you have the possibility to access your computer by name
1031 instead of address on the private network (see RFC 6762 and
1032 https://www.howtogeek.com/167190/).
1033
1034 menu "Network configuration"
1035 config INTERFACE
1036 string "netword card name"
1037 default "eth0"
1038 help
1039 eth0 is used in most cases. Virtual insterfaces may get other
1040 names (for example enp0s3 for the default network stack in qemu).
1041 Systemd may also rename network interfaces according to their
1042 bus addresses.
1043 config IP_ADDR
1044 string "Static IP address"
1045 default "10.0.2.9"
1046 help
1047 The default here is for a virtual interface in qemu. Private
1048 networks have addresses in the range 10.x.x.x or 192.169.x.x.
1049 You have to know your network prefix. Then the last figure
1050 may be anything you like.
1051
1052 config GATEWAY
1053 string "Gateway"
1054 default "10.0.2.2"
1055 help
1056 Again, this default is for a qemu network stack. Usually, the
1057 gateway is the address of your firewall.
1058 config PREFIX
1059 string "Subnet prefix"
1060 default "24"
1061 help
1062 Again, this default is for a qemu network stack, but is also
1063 the most used in private networks.
1064 config BROADCAST
1065 string "Broadcast address"
1066 default "10.0.2.255"
1067 config DOMAIN
1068 string "Domain name (see help)"
1069 default "local"
1070 help
1071 Domain Name:
1072 Doamin names are registered, so if your computer is on a public
1073 network, you cannot use any name you'd like. On a public
1074 network, you should have been given a domain name by
1075 your corporation, institution, etc.
1076 If your network is really private, that is behind a firewall
1077 such as a box for connecting to an ISP, you can choose any
1078 domain you'd like. You can also opt for "local", see RFC 6762,
1079 or "something.test", see RFC 6761.
1080 config DNS1
1081 string "Primary Name server"
1082 default "10.0.2.3"
1083 config DNS2
1084 string "Secondary Name server"
1085 default "8.8.8.8"
1086 endmenu # Network configuration
1087
1088 menu "Console configuration"
1089 config FONT
1090 string "Console font"
1091 default "lat0-16"
1092 config FONTMAP
1093 string "Font map (-m option to setfont)"
1094 default "8859-1"
1095 config UNICODE
1096 bool "Unicode mode"
1097 default y
1098 config KEYMAP
1099 string "Keymap name"
1100 default "us"
1101 endmenu # Console configuration
1102
1103endmenu #--- System configuration
1104
1105menu "Advanced Features"
1106depends !BOOK_BLFS
1107
1108 config REPORT
1109 bool "Create SBU and disk usage report"
1110 default y
1111
1112 #--- ICA/farce
1113 config COMPARE
1114 bool "Run comparison analysis on final stage"
1115 depends !BOOK_CLFS2 && !BOOK_CLFS3
1116 default n
1117 help
1118 #-- Should an iterative comparison analysis be performed?
1119 #
1120 # Unless you are familiar with ICA and/or FARCE do not
1121 # select this option
1122 #
1123 # ICA and FARCE are analysis tools for comparing one
1124 # build to the next. Builds mays differ from one iteration
1125 # to another due to the build order and these tools try
1126 # to ferret out those differences by examining the stored
1127 # build logs and binary files.
1128 #
1129 # The scripts are well commented and can be found in ./extras/*
1130 #
1131
1132 config ITERATIONS
1133 int "Number of test runs (2,3,4,5)" if COMPARE
1134 depends on COMPARE
1135 range 2 5
1136 default 3
1137
1138 config RUN_ICA
1139 bool "ICA testing"
1140 depends on COMPARE
1141 default y
1142 help
1143 #-- Run ICA testing
1144
1145 config RUN_FARCE
1146 bool "farce testing"
1147 depends on COMPARE
1148 default n
1149 help
1150 #-- Run farce testing
1151 #--- End ICA/farce
1152
1153 #--- Optimizations
1154if !BOOK_CLFS2 && !BOOK_CLFS3
1155 config CONFIG_OPTIMIZE
1156 bool "Optimization and parallelization"
1157 default n
1158 help
1159 # Opens a menu for various optimization settings:
1160 # Actual optimization flags MUST be defined in ./optimize/*
1161 # before activating this option.
1162 #
1163 # WARNING: The use of build optimizations may lead to build issues.
1164 # If the system doesn't work as expected, please rebuild
1165 # without optimizations before asking for support.
1166 menu "Optimization settings"
1167 depends on CONFIG_OPTIMIZE
1168
1169 config N_PARALLEL
1170 int "Number of parallel `make' jobs"
1171 default 1
1172 help
1173 #-- The usual recommandation is (number of CPU cores)+1
1174 # Do not set for meaningful SBU calculations.
1175
1176 choice
1177 prompt "Optimization level "
1178 default OPT_1
1179 help
1180 #-- Optimization values are set in optimize/* files
1181
1182 config OPT_1
1183 bool "Final system only"
1184
1185 config OPT_2
1186 bool "Both temp tools and final system"
1187
1188 config OPT_3
1189 bool "Cross tools (only MAKEFLAGS), temp tools and final system" if BOOK_CLFS
1190 endchoice
1191endmenu
1192 config OPTIMIZE
1193 int
1194 default "0" if !CONFIG_OPTIMIZE
1195 default "1" if OPT_1
1196 default "2" if OPT_2
1197 default "3" if OPT_3
1198endif
1199 #--- End Optimizations
1200
1201 #-- Internal Settings
1202 menu "Internal Settings (WARNING: for jhalfs developers only)"
1203
1204 config SCRIPT_ROOT
1205 string "Scripts root"
1206 default "jhalfs"
1207
1208 config JHALFSDIR
1209 string "jhalfs directory"
1210 default "$BUILDDIR/$SCRIPT_ROOT"
1211
1212 config LOGDIRBASE
1213 string "Build logs directory basename"
1214 default "logs"
1215
1216 config LOGDIR
1217 string "Build logs directory"
1218 default "$JHALFSDIR/$LOGDIRBASE"
1219
1220 config TESTLOGDIRBASE
1221 string "Test suites logs directory basename"
1222 default "test-logs"
1223
1224 config TESTLOGDIR
1225 string "Test suites logs directory"
1226 default "$JHALFSDIR/$TESTLOGDIRBASE"
1227
1228 config FILELOGDIRBASE
1229 string "Installed files logs directory basename"
1230 default "installed-files"
1231
1232 config FILELOGDIR
1233 string "Installed files logs directory"
1234 default "$JHALFSDIR/$FILELOGDIRBASE"
1235
1236 config ICALOGDIR
1237 string "ICA logs directory"
1238 default "$LOGDIR/ICA"
1239
1240 config FARCELOGDIR
1241 string "farce logs directory"
1242 default "$LOGDIR/farce"
1243
1244 config MKFILE
1245 string "Makefile"
1246 default "$JHALFSDIR/Makefile"
1247
1248 config XSL
1249 string "XSL stylesheet"
1250 default "$PROGNAME.xsl"
1251
1252 config PKG_LST
1253 string "Package contents list"
1254 default "unpacked"
1255
1256 #--- End Internal Settings
1257 endmenu
1258
1259#--- End Advanced Features
1260endmenu
1261
1262config REBUILD_MAKEFILE
1263 depends !BOOK_BLFS
1264 bool "Rebuild the Makefile (see help)"
1265 default n
1266 help
1267 #-- Rebuild the Makefile
1268 #
1269 # This option allows to rebuild the Makefile after
1270 # customizing the base system build scripts.
1271 #
1272 # See README.CUSTOM for more info about this feature.
1273
Note: See TracBrowser for help on using the repository browser.