source: Config.in@ 3d55f0e

experimental
Last change on this file since 3d55f0e was 7d4cc81, checked in by George Boudreau <georgeb@…>, 18 years ago

Changes made to allow the generated makefile to be run from any account (with sudo privs)

  • Property mode set to 100644
File size: 17.7 KB
RevLine 
[3b0fb28]1menu "--- BOOK Settings"
2
3 #--- BOOK/script
[613d46b]4 choice
5 prompt "Use BOOK"
6 default BOOK_LFS
7 help
[33c34c9]8 #-- Select the BOOK/Build style you wish to configure.
[613d46b]9
10 config BOOK_LFS
[33c34c9]11 bool "Linux From Scratch"
[3b0fb28]12
[613d46b]13 config BOOK_CLFS
[33c34c9]14 bool "Cross-Compiled Linux From Scratch"
[3b0fb28]15
[613d46b]16 config BOOK_CLFS2
[33c34c9]17 bool "Cross-Compiled Linux From Scratch (Version 2)"
[3b0fb28]18
[725ae5a]19# config BOOK_CLFS3
[33c34c9]20# bool "Cross-Compiled Linux From Scratch (Embedded Systems)"
[3b0fb28]21
[613d46b]22 config BOOK_HLFS
[33c34c9]23 bool "Hardened Linux From Scratch"
[3b0fb28]24
[00f4966]25 config BOOK_BLFS
26 bool "Beyond Linux From Scratch"
[613d46b]27 endchoice
[3b0fb28]28
[2b0f8a5]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
[613d46b]38 config RUN_ME
39 string
[2b0f8a5]40 default "./jhalfs run" if !BOOK_BLFS
41 default "./blfs-tool" if BOOK_BLFS
[3b0fb28]42 #--- End BOOK/script
[613d46b]43
[3b0fb28]44 #--- Book version
[613d46b]45 choice
46 prompt "Release"
47 default relSVN
48 config relSVN
49 bool "SVN"
[33c34c9]50 help
51 #-- Current development version as in trunk
[3b0fb28]52
[613d46b]53 config WORKING_COPY
54 bool "Working Copy"
[00f4966]55 depends on !BOOK_BLFS
[33c34c9]56 help
57 #-- A local working copy
[3b0fb28]58
[613d46b]59 config BRANCH
[33c34c9]60 bool "Branch or stable book" if !BOOK_HLFS && !BOOK_CLFS2
61 help
62 #-- A supported SVN branch or stable released book
[613d46b]63 endchoice
64
65 config BRANCH_ID
[1b99a8b]66 string "Book Version (mandatory)"
[f2382aa]67 default "**EDIT ME**"
[613d46b]68 depends BRANCH
[14f86de]69 help
[fa58f81]70 #-- A list of valid branches and stable books ID's is available here.
[14f86de]71 # http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
[613d46b]72
73 config BOOK
[65a2be6]74 string "Loc of working copy (mandatory)"
[613d46b]75 default "**EDIT ME**"
76 depends WORKING_COPY
[14f86de]77 help
[3b0fb28]78 #-- The full path to a local copy of the book XML sources
[14f86de]79 #
[3b0fb28]80 #--- End BOOK version
[613d46b]81
[3b0fb28]82 #--- CLFS specific params
[613d46b]83 choice
84 prompt "Target architecture"
85 default ARCH_X86
86 depends BOOK_CLFS || BOOK_CLFS2
87 help
[33c34c9]88 #-- Choose a base architecture
[3b0fb28]89
[613d46b]90 config ARCH_X86
[056486c]91 bool "x86"
[3b0fb28]92
[613d46b]93 config ARCH_MIPS
94 bool "mips" if !BOOK_CLFS2
[3b0fb28]95
[613d46b]96 config ARCH_PPC
97 bool "ppc" if !BOOK_CLFS2
[3b0fb28]98
[613d46b]99 config ARCH_SPARC
100 bool "sparc" if !BOOK_CLFS2
[3b0fb28]101
[613d46b]102 config ARCH_ALPHA
103 bool "alpha" if !BOOK_CLFS2
[3b0fb28]104
[613d46b]105 config ARCH_ARM
106 bool "arm" if !BOOK_CLFS
107 endchoice
108
109 choice
110 prompt "Library"
111 depends (BOOK_CLFS || BOOK_CLFS2)
112 default DATA_32 if !ARCH_ALPHA
113 default DATA_64 if ARCH_ALPHA
[3b0fb28]114
[613d46b]115 config DATA_32
116 bool "32-bit" if !ARCH_ALPHA
[3b0fb28]117
[613d46b]118 config DATA_64
119 bool "64-bit" if !ARCH_PPC && !ARCH_ARM && !(BOOK_CLFS2 && ARCH_X86)
[3b0fb28]120
[613d46b]121 config DATA_MULTI
122 bool "multilib" if !ARCH_ALPHA && !ARCH_ARM && !(BOOK_CLFS2 && ARCH_X86)
123 endchoice
124
125 choice
126 prompt "Target"
127 depends (BOOK_CLFS || BOOK_CLFS2) && ((ARCH_X86 && DATA_32) || ARCH_MIPS)
[3b0fb28]128
[613d46b]129 config PROC_i486
130 bool "i486" if ARCH_X86 && DATA_32
[3b0fb28]131
[613d46b]132 config PROC_i586
133 bool "i586" if ARCH_X86 && DATA_32
[3b0fb28]134
[613d46b]135 config PROC_i686
136 bool "i686" if ARCH_X86 && DATA_32
[3b0fb28]137
[613d46b]138 config PROC_mipsel
139 bool "mips -little endian" if ARCH_MIPS
[3b0fb28]140
[613d46b]141 config PROC_mips
142 bool "mips" if ARCH_MIPS
143 endchoice
144
145 config TARGET
146 string
147 depends DATA_32
148 default "i486-pc-linux-gnu" if ARCH_X86 && PROC_i486
[056486c]149 default "i586-pc-linux-gnu" if ARCH_X86 && PROC_i586
[613d46b]150 default "i686-pc-linux-gnu" if ARCH_X86 && PROC_i686
151 default "mipsel-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
152 default "mips-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
153 default "powerpc-unknown-linux-gnu" if ARCH_PPC
154 default "sparc-unknown-linux-gnu" if ARCH_SPARC
155 default "arm-unknown-linux-gnu" if ARCH_ARM
156
157 config TARGET
158 string
159 depends DATA_64
[056486c]160 default "x86_64-unknown-linux-gnu" if ARCH_X86
[613d46b]161 default "mips64el-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
162 default "mips64-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
163 default "sparc64-unknown-linux-gnu" if ARCH_SPARC
164 default "alpha-unknown-linux-gnu" if ARCH_ALPHA
165
166 config TARGET
167 string
168 depends DATA_MULTI
169 default "x86_64-unknown-linux-gnu" if ARCH_X86
170 default "mips64el-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
171 default "mips64-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
172 default "sparc64-unknown-linux-gnu" if ARCH_SPARC
173 default "powerpc64-unknown-linux-gnu" if ARCH_PPC
[056486c]174
[613d46b]175
176 config TARGET32
177 string
178 depends DATA_MULTI
179 default "i686-pc-linux-gnu" if ARCH_X86
180 default "mipsel-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
181 default "mips-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
182 default "sparc-unknown-linux-gnu" if ARCH_SPARC
[056486c]183 default "powerpc-unknown-linux-gnu" if ARCH_PPC
[613d46b]184
185 config ARCH
186 string
187 depends DATA_32
188 default "x86" if ARCH_X86
189 default "ppc" if ARCH_PPC
190 default "mips" if ARCH_MIPS
191 default "sparc" if ARCH_SPARC
192 default "arm" if ARCH_ARM
[056486c]193
[613d46b]194 config ARCH
195 string
196 depends DATA_64
197 default "x86_64-64" if ARCH_X86
198 default "mips64-64" if ARCH_MIPS
199 default "sparc64-64" if ARCH_SPARC
200 default "alpha" if ARCH_ALPHA
[056486c]201
[613d46b]202 config ARCH
203 string
204 depends DATA_MULTI
205 default "x86_64" if ARCH_X86
206 default "mips64" if ARCH_MIPS
207 default "sparc64" if ARCH_SPARC
208 default "ppc64" if ARCH_PPC
209
210 choice
211 prompt "Build method"
212 depends BOOK_CLFS
213 help
[3b0fb28]214 #-- What build method should be used: a chroot jail or minimal boot system
215 # Review the Cross-LFS book chap6 "TO BOOT OR CHROOT" for a full explanation.
216
[613d46b]217 config BUILD_CHROOT
218 bool "chroot"
[3b0fb28]219
[613d46b]220 config BUILD_BOOT
[056486c]221 bool "boot"
[613d46b]222 endchoice
[3b0fb28]223
[613d46b]224 config METHOD
225 string
226 default "chroot" if BUILD_CHROOT
[a181405]227 default "boot" if BUILD_BOOT
[056486c]228
[613d46b]229 config BOOT_CONFIG
[65a2be6]230 string "BOOT kernel config file (mandatory)"
[725ae5a]231 default "***EDIT ME***"
[613d46b]232 depends on BUILD_BOOT
233 help
[3b0fb28]234 #-- If METHOD=boot, location of boot-kernel config file
235 # The config file will be copied to ${BUILD_DIR}/sources
236 # and renamed 'bootkernel-config'
237 #
238 # NOTE: this setting is required
239 #--- End CLFS specific params
[613d46b]240
[3b0fb28]241 #--- HLFS specific params
[613d46b]242 config GRSECURITY_HOST
243 bool "Building on grsecurity enabled host?"
244 default n
245 depends on BOOK_HLFS
246 help
[3b0fb28]247 #-- If your build system has grsecurity patches applied
248 # you MUST enable this switch.
[613d46b]249
250 choice
251 prompt "Library"
252 depends on BOOK_HLFS
253 help
[3b0fb28]254 #-- Which library model to use: uClibc/glibc
255
[613d46b]256 config LIB_GLIBC
257 bool "glibc"
[3b0fb28]258
[613d46b]259 config LIB_UCLIBC
260 bool "uClibc"
261 endchoice
[3b0fb28]262
[613d46b]263 config MODEL
264 depends on BOOK_HLFS
265 string
266 default "glibc" if LIB_GLIBC
267 default "uclibc" if LIB_UCLIBC
[3b0fb28]268 #--- End HLFS specific params
[613d46b]269
[cfdc0f1]270 #--- blfs-tool Support
271 config BLFS_TOOL
272 bool "Add blfs-tool support"
273 default n
274 depends on !BOOK_BLFS
275 help
276 #--- Activating this option additional packages needed to
277 # use blfs-tool will be installed.
278 #
279 # The blfs-tool files will be installed under
280 # $BUILD_DIR/blfs_root.
281
282 # After booting the new xLFS system you should to
283 # create an user account and move the blfs-root
284 # directory to the user's home, making he the
285 # directory and files owner, before start
286 # using blfs-tool.
287 #
288 # Also, be sure to create the $TRACKING_DIR directory
289 # and bring to the build user the right privileges
290 # over it.
291 #
292 # And don't forget to configure sudo properly.
293
294 choice
295 prompt "BLFS Release"
296 default BLFS_SVN
297 depends on BLFS_TOOL
298 config BLFS_SVN
299 bool "BLFS SVN"
300 help
301 #-- Current development version as in trunk
302
303 config BLFS_BRANCH
304 bool "BLFS Branch or stable book"
305 help
306 #-- A supported SVN branch or stable released book
307 endchoice
308
309 config BLFS_BRANCH_ID
310 string "BLFS Book Version (mandatory)"
311 default "**EDIT ME**"
312 depends on BLFS_BRANCH
313 help
314 #-- A list of valid branches and stable books ID's is available here.
315 # http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
316
317 menu "blfs-tool dependencies"
318 depends on BLFS_TOOL
319
320 config DEP_LIBXML
321 bool "libxml2 (required)"
322 default y
323
324 config DEP_LIBXSLT
325 bool "libxslt (required)"
326 default y
327
328 config DEP_DBXSL
329 bool "DocBook XSL (required)"
330 default y
331
332 config DEP_LINKS
333 bool "links (required)"
334 default y
335
336 config DEP_SUDO
337 bool "sudo (recommended)"
338 default y
339
340 config DEP_WGET
341 bool "wget (recommended)"
342 default y
343
344 config DEP_SVN
345 bool "SVN client (optional)"
346 default y
347
348 config DEP_GPM
349 bool "GPM (optional, see help)"
350 default y
351 help
352 #-- You MUST to install manually the gpm bootscript
353 # and create its configuration file
354 endmenu
355 #--- End blfs-tool Support
356
[00f4966]357 #--- BLFS specific params
358 config BLFS_ROOT
359 string "Directory root"
[cfdc0f1]360 default "$HOME/blfs_root" if BOOK_BLFS
[9425fd9]361 default "/blfs_root" if BLFS_TOOL
[cfdc0f1]362 depends on BOOK_BLFS || BLFS_TOOL
[00f4966]363 help
364 #-- Full path to the directory where all required
365 # files and scripts will be stored.
366
367 config BLFS_XML
368 string "BLFS sources directory"
369 default "blfs-xml"
[cfdc0f1]370 depends on BOOK_BLFS || BLFS_TOOL
[00f4966]371 help
[cfdc0f1]372 #-- The directory name under $BLFS_ROOT where BLFS book
373 # sources will be checkout.
[2d0a2e5]374
375 config TRACKING_DIR
376 string "Installed packages database directory"
377 default "/var/lib/jhalfs/BLFS"
[cfdc0f1]378 depends on BOOK_BLFS || BLFS_TOOL
[2d0a2e5]379 help
380 #-- Full path to the directory where the installed
381 # packages database will be created.
382 #
[cfdc0f1]383 # You MUST to create manually this directory.
384 #
[2d0a2e5]385 # Note that the user that will build the packages must
386 # have read and write privileges on that directory.
[00f4966]387 #--- End BLFS specific params
388
[3b0fb28]389#--- End BOOK Settings
390endmenu
[613d46b]391
[3b0fb28]392menu "--- General Settings"
[00f4966]393 depends on !BOOK_BLFS
[3b0fb28]394
395 #--- Set User Account
396 config CONFIG_USER
397 bool "Change the default user/group for this build"
398 default n
399 help #-- Unprivileged user and group name
400 # If you do not have the priv to create/delete
401 # users and groups you can specifiy your own
402 # user id for the build
403 #
404 # default values for each book
405 # LFS lfs
406 # CLFS clfs
407 # CLFS2 clfs
408 # HLFS hlfs
409
410 config DEF_USER
411 string
412 default "lfs" if BOOK_LFS
413 default "clfs" if BOOK_CLFS || BOOK_CLFS2
414 default "hlfs" if BOOK_HLFS
415
416 config SET_USER
417 string "User account"
418 depends CONFIG_USER
419 default DEF_USER
420
421
422 config CONFIG_GROUP
423 bool "Set Group?"
424 default n
425 depends CONFIG_USER
426
427 config SET_GROUP
428 string "GROUP account"
429 depends CONFIG_GROUP
430 default DEF_USER
431
432 config LUSER
433 string
434 default DEF_USER if !CONFIG_USER
435 default SET_USER if CONFIG_USER
436
437 config LGROUP
438 string
439 default LUSER if !CONFIG_GROUP
440 default SET_GROUP if CONFIG_GROUP
441 #--- End Set User Account
[613d46b]442
[cbe3f2b]443 config BUILDDIR
444 string "Build Directory"
445 default "/mnt/build_dir"
446 help
[3b0fb28]447 #-- The directory where the created system will be located.
[613d46b]448
[47fddc8]449 config GETPKG
[613d46b]450 bool "Retrieve source files"
451 default n
452 help
[3b0fb28]453 #-- Download all packages and patches required by the book selected
454 # NOTE: Looks for files in the local archive defined by SRC_ARCHIVE
455 # first and if necessary retrieve them from the 'net.
456 # Files will be transfered to $BUILDDIR/sources.
457
458 config SRC_ARCHIVE
459 string "Package Archive Directory"
460 default "$SRC_ARCHIVE"
[47fddc8]461 depends GETPKG
[3b0fb28]462 help
463 #-- A local archive for packages/file (not $BUILDDIR/sources)
464 # Used only if GETPKG = 1
465 # Any missing file will be downloaded and archived here,
466 # if the user has the right priviledges.
[613d46b]467
[3c96826]468 config SERVER
469 string "FTP mirror"
470 default "ftp://ftp.lfs-matrix.net"
471 depends GETPKG
472 help
473 #-- FTP mirror to download packages and patches if not found
474 # in $SRC_ARCHIVE
475 # As a last resort, the files will dowloaded from upstream,
476 # if possible.
477
[47fddc8]478 config GETKERNEL
[613d46b]479 bool "Always retrieve kernel package"
480 default n
[47fddc8]481 depends GETPKG
[613d46b]482 help
[3b0fb28]483 #-- Get the kernel package and patches even if no configuration
484 # file has been supplied.
[613d46b]485
[47fddc8]486 config RUNMAKE
[21dab83]487 bool "Run the makefile"
[613d46b]488 default n
489 help
[3b0fb28]490 #-- Automatically run the makefile once it has been created
[613d46b]491
[47fddc8]492 config CLEAN
[21dab83]493 bool "Rebuild files"
494 default n
495 help
[3b0fb28]496 #-- Clean the build directory before performing any other task.
497 # The directory is cleaned only if it was populated by a
498 # previous JHALFS run.
[056486c]499 #
[3b0fb28]500 # NOTE::You must be 'root' for this function to work
[613d46b]501
[3b0fb28]502#--- End General Settings
503endmenu
[056486c]504
[3b0fb28]505menu "--- Build Settings"
[00f4966]506 depends on !BOOK_BLFS
[613d46b]507
[3b0fb28]508 #--- Test Suites
[613d46b]509 config CONFIG_TESTS
510 bool "Run testsuites"
[623643e]511 depends !BOOK_CLFS2
[1b99a8b]512 default y
[613d46b]513 help
[3b0fb28]514 #-- Run test suites
[623643e]515 #
516 # You will can to select between:
517 #
518 # - Only final system Glibc, GCC and Binutils testsuites
519 # - All final system testsuites
520 # - Both temporary tools and final system testsuites
521 #
522 # HLFS and CLFS has no testsuites available in the
[33c34c9]523 # temporary tools phase
[623643e]524
525 # You will be promt also about the "flavour" of the
526 # testsuites run:
527 #
528 # - Don't stop on test suite failures
529 # - Abort the build at the first test suite failure
[056486c]530 #
531
[3b0fb28]532 choice
[ed339567]533 prompt "Tests level"
[623643e]534 depends CONFIG_TESTS
[613d46b]535 default TEST_1
[056486c]536
[613d46b]537 config TST_1
[623643e]538 bool "Only final system Glibc, GCC and Binutils testsuites"
[3b0fb28]539
[613d46b]540 config TST_2
[623643e]541 bool "All final system testsuites"
[3b0fb28]542
[613d46b]543 config TST_3
[623643e]544 bool "Both temporary tools and final system testsuites" if !BOOK_HLFS && !BOOK_CLFS
[3b0fb28]545 endchoice
546
547 config TEST
[613d46b]548 int
[21dab83]549 default "0" if !CONFIG_TESTS
[613d46b]550 default "1" if TST_1
551 default "2" if TST_2
552 default "3" if TST_3
[3b0fb28]553
[1b99a8b]554 choice
[ed339567]555 prompt "Flavour"
[623643e]556 depends CONFIG_TESTS
[056486c]557
558 config NO_BOMB
559 bool "Don't stop on test suite failures"
[3b0fb28]560
[056486c]561 config BOMB
562 bool "Abort the build at the first test suite failure"
[3b0fb28]563 endchoice
564
565 config BOMB_TEST
[47fddc8]566 bool
[ed339567]567 default n if NO_BOMB
568 default y if BOMB
[47fddc8]569
[3b0fb28]570 #--- End Test Suites
[613d46b]571
[3b0fb28]572 #--- FSTAB
573 config HAVE_FSTAB
574 bool "Use a custom fstab file"
575 default n
576 help
577 #-- Select this if you have ready a proper fstab file
578
579 config FSTAB
580 string "Fstab file (optional)"
581 default "***EDIT ME***"
582 depends on HAVE_FSTAB
583 help
584 #-- The location of fstab file (if empty, a template is created)
585 #--- End FSTAB
586
587 #--- Kernel
588 config CONFIG_BUILD_KERNEL
589 bool "Build the kernel"
590 default n
591 help
592 #-- Select this option if you wish to build the kernel.
593 #
594 # You will be prompted for the full path to the .config
595 # file. It will be copied to the 'sources' directory and
596 # rename kernel-config
597
598 config CONFIG
599 string "Kernel config file"
600 default "***EDIT ME***"
601 depends on CONFIG_BUILD_KERNEL
602 help
603 #-- Fully qualified path to a kernel config file
604 # The config file will be copied to ${BUILD_DIR}/sources
605 # and renamed 'kernel-config'
606 #--- End Kernel
607
[47fddc8]608 config STRIP
[3b0fb28]609 bool "Strip Installed Binaries/Libraries"
[613d46b]610 default y
611
[47fddc8]612 config VIMLANG
[3b0fb28]613 bool "Install vim-lang package"
614 default y
615 help
[1b99a8b]616 #-- Install the optional vim-lang package
[3b0fb28]617
[613d46b]618 config TIMEZONE
619 string "TimeZone"
[33c34c9]620 default "GMT"
[613d46b]621 help
[33c34c9]622 #-- The timezone as output by tzselect
623 # This will be copied to /etc/localtime
[613d46b]624
625 config LANG
626 string "Language"
627 default "$LANG"
628 help
[3b0fb28]629 #-- Language information in /etc/profile See <locale -a> for values
[613d46b]630
631 config LC_ALL
632 string "Language"
633 default "$LC_ALL"
634 depends on !BOOK_LFS
635 help
[3b0fb28]636 #-- Language information in /etc/profile See <locale -a> for values
[613d46b]637
[3b0fb28]638 #--- Groff page
[613d46b]639 choice
640 prompt "Groff page size"
641 default PAGE_LETTER
642 help
[3b0fb28]643 #-- Page definition for groff: letter or A4
[056486c]644
[613d46b]645 config PAGE_LETTER
646 bool "letter"
[3b0fb28]647
[613d46b]648 config PAGE_A4
649 bool "A4"
650 endchoice
[3b0fb28]651
[613d46b]652 config PAGE
653 string
654 default "letter" if PAGE_LETTER
655 default "A4" if PAGE_A4
[3b0fb28]656 #--- End Groff page
[613d46b]657
[3b0fb28]658#--- End Build Settings
659endmenu
660
661menu "--- Advanced Features"
[00f4966]662 depends on !BOOK_BLFS
[3b0fb28]663
[47fddc8]664 config REPORT
[3b0fb28]665 bool "Create SBU and disk usage report"
666 default y
667
668 #--- ICA/farce
[47fddc8]669 config COMPARE
[3b0fb28]670 bool "Run comparison analysis on final stage"
671 depends !BOOK_CLFS2
672 default n
[613d46b]673 help
[3b0fb28]674 #-- Should some iterative comparison analysis by made?
675 #
676 # Unless you are familiar with ICA and/or FARCE do not
677 # select this option
678 #
679 # ICA and FARCE are analysis tools for comparing one
680 # build to the next. Builds mays differ from one iteration
681 # to another due to the build order and these tools try
682 # to ferret out those differences by examining the stored
683 # build logs and binary files.
684 #
685 # The scripts are well commented and can be found in ./extras/*
686 #
687
688 config ITERATIONS
[47fddc8]689 int "Number of test runs (2,3,4,5)" if COMPARE
690 depends on COMPARE
[3b0fb28]691 range 2 5
692 default 3
693
[47fddc8]694 config RUN_ICA
[3b0fb28]695 bool "ICA testing"
[47fddc8]696 depends on COMPARE
[3b0fb28]697 default y
[613d46b]698 help
[3b0fb28]699 #-- Run ICA testing
[613d46b]700
[47fddc8]701 config RUN_FARCE
[3b0fb28]702 bool "farce testing"
[47fddc8]703 depends on COMPARE
[3b0fb28]704 default n
705 help
706 #-- Run farce testing
707 #--- End ICA/farce
708
[3c96826]709 #--- Optimizations
[7d4cc81]710if !BOOK_CLFS2
[3b0fb28]711 config CONFIG_OPTIMIZE
[3c96826]712 bool "Use optimization (see help)"
[cbe3f2b]713 default n
714 help
[3b0fb28]715 #-- Actual optimzation flags MUST be defined in ./optimize/*
716 # files before activate this option.
[cbe3f2b]717 #
[3b0fb28]718 # WARNING: The use of build optimizations may be dangerous.
719 # You should know what you are doing and be sure that the
720 # optimization settings listed below are what you want.
721 # It there are build issues or the system doesn't work as
722 # expected, please rebuild without optimizations before
723 # asking for support.
[613d46b]724
[3b0fb28]725 choice
726 prompt "Optimization level "
727 default OPT_1
728 depends CONFIG_OPTIMIZE
[613d46b]729 help
[3b0fb28]730 #-- Optimization values are set in optimize/* files
731
732 config OPT_1
733 bool "Final system only"
734
735 config OPT_2
736 bool "Both temp tools and final system"
737 endchoice
738
739 config OPTIMIZE
740 int
741 default "0" if !CONFIG_OPTIMIZE
742 default "1" if OPT_1
743 default "2" if OPT_2
[7d4cc81]744endif
[3b0fb28]745 #--- End Optimizations
746
[3c96826]747 #-- Internal Settings
748 menu "--- Internal Settings (WARNING: for jhalfs developers only)"
749
750 config SCRIPT_ROOT
751 string "Scripts root"
752 default "jhalfs"
753
754 config JHALFSDIR
755 string "jhalfs directory"
756 default "$BUILDDIR/$SCRIPT_ROOT"
757
758 config LOGDIR
759 string "Build logs directory"
760 default "$JHALFSDIR/logs"
761
762 config TESTLOGDIR
763 string "Test suites logs directory"
764 default "$JHALFSDIR/test-logs"
765
766 config ICALOGDIR
767 string "ICA logs directory"
768 default "$LOGDIR/ICA"
769
770 config FARCELOGDIR
771 string "farce logs directory"
772 default "$LOGDIR/farce"
773
774 config MKFILE
775 string "Makefile"
776 default "$JHALFSDIR/Makefile"
777
778 config XSL
779 string "XSL stylesheet"
780 default "$PROGNAME.xsl"
781
782 config PKG_LST
783 string "Package contents list"
784 default "unpacked"
785
786 #--- End Internal Settings
787 endmenu
788
[3b0fb28]789#--- End Advanced Features
790endmenu
Note: See TracBrowser for help on using the repository browser.