source: Config.in@ 7cd9186

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

A quirk appeared in Config file. Had to re-enter METHOD text

  • Property mode set to 100644
File size: 13.0 KB
Line 
1mainmenu "JHALFS Build Script Configuration"
2
3 choice
4 prompt "Use BOOK"
5 default BOOK_LFS
6 help
7 Select the BOOK/Build style you wish to configure.
8
9 config BOOK_LFS
10 bool "lfs"
11 config BOOK_CLFS
12 bool "clfs"
13 config BOOK_CLFS2
14 bool "clfs2"
15 config BOOK_HLFS
16 bool "hlfs"
17 config BOOK_BLFS
18 bool "blfs"
19 endchoice
20 config RUN_ME
21 string
22 default "./lfs" if BOOK_LFS
23 default "./clfs" if BOOK_CLFS
24 default "./clfs2" if BOOK_CLFS2
25 default "./clfs3" if BOOK_CLFS3
26 default "./hlfs" if BOOK_HLFS
27 default "./blfs" if BOOK_BLFS
28
29
30#--- Book version
31#menu "Book Version"
32 choice
33 prompt "Release"
34 default relSVN
35 config relSVN
36 bool "SVN"
37 config WORKING_COPY
38 bool "Working Copy"
39 config BRANCH
40 bool "Branch" if !BOOK_HLFS && !BOOK_CLFS2
41 endchoice
42
43 config BRANCH_ID
44 string "Branch (mandatory)"
45 default "**EDIT ME**"
46 depends BRANCH
47 help
48 #-- A list of valid branch ID's is available here.
49 # http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
50
51 config BOOK
52 string "Loc of working copy (mandatory)"
53 default "**EDIT ME**"
54 depends WORKING_COPY
55 help
56 #--- The full path to a local copy of the book
57 #
58#endmenu
59
60#-----------------------
61
62comment "--------CLFS specific params---------"
63depends on BOOK_CLFS || BOOK_CLFS2
64
65 choice
66 prompt "Target architecture"
67 default ARCH_X86
68 depends BOOK_CLFS || BOOK_CLFS2
69 help
70 Choose a base architecture
71 config ARCH_X86
72 bool "x86"
73 config ARCH_MIPS
74 bool "mips" if !BOOK_CLFS2
75 config ARCH_PPC
76 bool "ppc" if !BOOK_CLFS2
77 config ARCH_SPARC
78 bool "sparc" if !BOOK_CLFS2
79 config ARCH_ALPHA
80 bool "alpha" if !BOOK_CLFS2
81 config ARCH_ARM
82 bool "arm" if !BOOK_CLFS
83 endchoice
84
85 choice
86 prompt "Library"
87 depends (BOOK_CLFS || BOOK_CLFS2)
88 default DATA_32 if !ARCH_ALPHA
89 default DATA_64 if ARCH_ALPHA
90 config DATA_32
91 bool "32-bit" if !ARCH_ALPHA
92 config DATA_64
93 bool "64-bit" if !ARCH_PPC && !ARCH_ARM && !(BOOK_CLFS2 && ARCH_X86)
94 config DATA_MULTI
95 bool "multilib" if !ARCH_ALPHA && !ARCH_ARM && !(BOOK_CLFS2 && ARCH_X86)
96 endchoice
97
98 choice
99 prompt "Target"
100 depends (BOOK_CLFS || BOOK_CLFS2) && ((ARCH_X86 && DATA_32) || ARCH_MIPS)
101 config PROC_i486
102 bool "i486" if ARCH_X86 && DATA_32
103 config PROC_i586
104 bool "i586" if ARCH_X86 && DATA_32
105 config PROC_i686
106 bool "i686" if ARCH_X86 && DATA_32
107 config PROC_mipsel
108 bool "mips -little endian" if ARCH_MIPS
109 config PROC_mips
110 bool "mips" if ARCH_MIPS
111 endchoice
112
113
114 config TARGET
115 string
116 depends DATA_32
117 default "i486-pc-linux-gnu" if ARCH_X86 && PROC_i486
118 default "i586-pc-linux-gnu" if ARCH_X86 && PROC_i586
119 default "i686-pc-linux-gnu" if ARCH_X86 && PROC_i686
120 default "mipsel-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
121 default "mips-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
122 default "powerpc-unknown-linux-gnu" if ARCH_PPC
123 default "sparc-unknown-linux-gnu" if ARCH_SPARC
124 default "arm-unknown-linux-gnu" if ARCH_ARM
125
126 config TARGET
127 string
128 depends DATA_64
129 default "x86_64-unknown-linux-gnu" if ARCH_X86
130 default "mips64el-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
131 default "mips64-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
132 default "sparc64-unknown-linux-gnu" if ARCH_SPARC
133 default "alpha-unknown-linux-gnu" if ARCH_ALPHA
134
135 config TARGET
136 string
137 depends DATA_MULTI
138 default "x86_64-unknown-linux-gnu" if ARCH_X86
139 default "mips64el-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
140 default "mips64-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
141 default "sparc64-unknown-linux-gnu" if ARCH_SPARC
142 default "powerpc64-unknown-linux-gnu" if ARCH_PPC
143
144
145 config TARGET32
146 string
147 depends DATA_MULTI
148 default "i686-pc-linux-gnu" if ARCH_X86
149 default "mipsel-unknown-linux-gnu" if ARCH_MIPS && PROC_mipsel
150 default "mips-unknown-linux-gnu" if ARCH_MIPS && PROC_mips
151 default "sparc-unknown-linux-gnu" if ARCH_SPARC
152 default "powerpc-unknown-linux-gnu" if ARCH_PPC
153
154 config ARCH
155 string
156 depends DATA_32
157 default "x86" if ARCH_X86
158 default "ppc" if ARCH_PPC
159 default "mips" if ARCH_MIPS
160 default "sparc" if ARCH_SPARC
161 default "arm" if ARCH_ARM
162
163 config ARCH
164 string
165 depends DATA_64
166 default "x86_64-64" if ARCH_X86
167 default "mips64-64" if ARCH_MIPS
168 default "sparc64-64" if ARCH_SPARC
169 default "alpha" if ARCH_ALPHA
170
171 config ARCH
172 string
173 depends DATA_MULTI
174 default "x86_64" if ARCH_X86
175 default "mips64" if ARCH_MIPS
176 default "sparc64" if ARCH_SPARC
177 default "ppc64" if ARCH_PPC
178
179
180 choice
181 prompt "Build method"
182 depends BOOK_CLFS
183 help
184 #--- What build method should be used: a chroot jail or minimal boot system
185 # Review the Cross-LFS book chap6 "TO BOOT OR CHROOT" for a full explanation.
186 config BUILD_CHROOT
187 bool "chroot"
188 config BUILD_BOOT
189 bool "boot"
190 endchoice
191 config METHOD
192 string
193 default "chroot" if BUILD_CHROOT
194 default "boot" if BUILD_BOOT
195
196 config BOOT_CONFIG
197 string "BOOT kernel config file (mandatory)"
198 default ""
199 depends on BUILD_BOOT
200 help
201 #--- If METHOD=boot, location of boot-kernel config file
202 # The config file will be copied to ${BUILD_DIR}/sources
203 # and renamed 'bootkernel-config'
204 # NOTE: this setting is required
205
206 config BOOT_KEYMAP
207 string "BOOT kernel keyboard map (see help)"
208 default "none"
209 depends on BUILD_BOOT
210 help
211 #--- Include the keymap in the kernel if defined. Path to the
212 # keymap file relative to /usr/share/kbd/keymaps/
213 # (e.g., i386/qwerty/us.map.gz) or "none" if you do not want
214 # a keymap included in the kernel
215
216 === Note about CLFS ===
217 If building the SVN or 1.0.0rc3 version using the boot method and
218 compiling the keymap into the kernel, you MUST to edit the "loadkeys"
219 command found in $JHALFSDIR/clfs-commands/boot/066-kernel to set the
220 full path in your host to the keymap file.
221
222comment "----------------------------------------"
223depends on BOOK_CLFS || BOOK_CLFS2
224
225
226comment "--------HLFS specific params---------"
227depends on BOOK_HLFS
228
229 config GRSECURITY_HOST
230 bool "Building on grsecurity enabled host?"
231 default n
232 depends on BOOK_HLFS
233 help
234 #--- If your build system has grsecurity patches applied
235 # you MUST enable this switch.
236
237 choice
238 prompt "Library"
239 depends on BOOK_HLFS
240 help
241 #--- Which library model to use: uClibc/glibc
242 config LIB_GLIBC
243 bool "glibc"
244 config LIB_UCLIBC
245 bool "uClibc"
246 endchoice
247 config MODEL
248 depends on BOOK_HLFS
249 string
250 default "glibc" if LIB_GLIBC
251 default "uclibc" if LIB_UCLIBC
252
253comment "-------------------------------------"
254depends on BOOK_HLFS
255
256#-----------------------
257
258
259 config CONFIG_GETPKG
260 bool "Retrieve source files"
261 default n
262 help
263 #--- Download all packages and patches required by the book selected
264 # NOTE: Looks for files in the local archive defined by SRC_ARCHIVE
265 # first and if necessary retrieve them from the 'net.
266 # Files will be transfered to $BUILDDIR/sources.
267
268 config CONFIG_GETKERNEL
269 bool "Always retrieve kernel package"
270 default n
271 help
272 # Get the kernel package and patches even if no configuration file
273 # has been supplied?
274
275 config CONFIG_RUNMAKE
276 bool "Run the makefile"
277 default n
278 help
279 #--- Automatically run the makefile once it has been created
280
281 config CONFIG_REBUILD
282 bool "Rebuild files"
283 default n
284 help
285 Clean the build directory before performing any other task. The directory
286 is cleaned only if it was populated by a previous JHALFS run.
287
288 config CONFIG_STRIP
289 bool "Strip Installed Binaries/Libraries"
290 default y
291
292
293 config CONFIG_VIMLANG
294 bool "Install vim-lang package"
295 default y
296 help
297 #--- install the optional vim-lang package
298
299
300#------------------
301 config CONFIG_OPTIMIZE
302 bool "Use optimization "
303 default n
304 help
305 # Actual optimzation flags are defined in ./optimize/*
306 #
307 # WARNING: The use of build optimizations may be dangerous.
308 # You should know what you are doing and be sure that the
309 # optimization settings listed below are what you want.
310 # There are build issues or the system doesn't work as
311 # expected, please rebuild without optimizations before
312 # asking for support.
313
314 choice
315 prompt "OPT level "
316 default OPT_1
317 depends CONFIG_OPTIMIZE
318 help
319 ***Optimization values are set in optimize/* files
320
321 config OPT_1
322 bool "Final system only"
323 config OPT_2
324 bool "Both temp tools and final system"
325 endchoice
326 config OPTIMIZE
327 int
328 default "0" if !CONFIG_OPTIMIZE
329 default "1" if OPT_1
330 default "2" if OPT_2
331
332#------------------
333 config CONFIG_COMPARE
334 bool "Run comparison analysis on final stage"
335 default n
336 help
337 #--- Should some iterative comparison analysis by made?
338 # Unless you are familiar with ICA and/or FARCE do not select this option
339 #
340 # ICA and FARCE are analysis tools for comparing one
341 # build to the next. Builds mays differ from one iteration
342 # to another due to the build order and these tools try
343 # to ferret out those differences by examining the stored
344 # build logs and binary files.
345 #
346 # The scripts are well commented and can be found here ./extras/*
347 #
348
349 config ITERATIONS
350 int "Number of test runs (2,3,4,5)"
351 depends on CONFIG_COMPARE
352 range 2 5
353 default 3
354
355 config CONFIG_ICA
356 bool "ICA testing"
357 depends on CONFIG_COMPARE
358 default y
359 help
360 #--- Run ICA testing
361
362 config CONFIG_FARCE
363 bool "farce testing"
364 depends on CONFIG_COMPARE
365 default n
366 help
367 #--- Run farce testing
368#------------------
369
370 config CONFIG_TESTS
371 bool "Run testsuites"
372 default n
373 help
374 #--- Run test suites [1-3]
375 # 1 = only chapter06 Glibc, GCC and Binutils testsuites
376 # 2 = all chapter06 testsuites
377 # 3 = all chapter05 and chapter06 testsuites
378 # (in CLFS, alias to 2)
379
380 HLFS has no testsuites available in the toolchain phase
381 # 1 = only chapter06 Glibc, Butterfly-tookchain
382 # 2 = all chapter06 testsuites
383 #
384
385 choice
386 prompt "Tests ->"
387 depends !BOOK_CLFS2 && CONFIG_TESTS
388 default TEST_1
389
390 config TST_1
391 bool "Only chap06 Glibc/GCC/Binutils tests" if !BOOK_HLFS
392 config TST_1
393 bool "Only chap06 Glibc/Butterfly-toolchain" if BOOK_HLFS
394 config TST_2
395 bool "All chap06 testsuites"
396 config TST_3
397 bool "All chap05/06 testsuites" if !BOOK_HLFS
398 endchoice
399 config TEST
400 int
401 default "0" if !CONFIG_TESTS
402 default "1" if TST_1
403 default "2" if TST_2
404 default "3" if TST_3
405
406 config CONFIG_REPORT
407 bool "Create SBU and disk usage report"
408 default y
409
410 config TIMEZONE
411 string "TimeZone"
412 default "America/New_York"
413 help
414 This will be copied to /etc/localtime
415
416
417 config LANG
418 string "Language"
419 default "$LANG"
420 help
421 #--- Language information in /etc/profile See <locale -a> for values
422
423 config LC_ALL
424 string "Language"
425 default "$LC_ALL"
426 depends on !BOOK_LFS
427 help
428 #--- Language information in /etc/profile See <locale -a> for values
429
430 choice
431 prompt "Groff page size"
432 default PAGE_LETTER
433 help
434 #--- page definition for groff letter/A4
435
436 config PAGE_LETTER
437 bool "letter"
438 config PAGE_A4
439 bool "A4"
440 endchoice
441 config PAGE
442 string
443 default "letter" if PAGE_LETTER
444 default "A4" if PAGE_A4
445
446 config BUILDDIR
447 string "Build Directory"
448 default "/mnt/build_dir"
449 help
450 #--- The directory where the created system will be located.
451
452 config SRC_ARCHIVE
453 string "Package Archive Directory"
454 default "$SRC_ARCHIVE"
455 help
456 #--- A local archive for packages/file (not BUILDDIR/sources)
457 # Used only if GETPKG = 1
458 # Any missing file will be downloaded and archived here,
459 # if the user has the right priviledges.
460
461 config FSTAB
462 string "Fstab file (optional)"
463 default ""
464 help
465 #--- Location of fstab file (if empty, a template is created)
466
467 config CONFIG
468 string "Kernel config file (optional)"
469 default ""
470 help
471 #--- Fully qualified path to a kernel config file
472 # The config file will be copied to ${BUILD_DIR}/sources
473 # and renamed 'kernel-config'
474 #
475 # If no config file is specified the kernel is NOT compiled
476
477 config KEYMAP
478 string "Keyboard map"
479 default "none"
480 depends on !BOOK_LFS
481 help
482 #--- Include the keymap in the kernel if defined. Path to the
483 # keymap file relative to /usr/share/kbd/keymaps/
484 # (e.g., i386/qwerty/us.map.gz) or "none" if you do not want
485 # a keymap included in the kernel
486
487
488# convert CONFIG_XXXX n/y to XXXX 0/1
489
490 config COMPARE
491 int
492 default 0 if !CONFIG_COMPARE
493 default 1 if CONFIG_COMPARE
494
495 config GETPKG
496 int
497 default 0 if !CONFIG_GETPKG
498 default 1 if CONFIG_GETPKG
499
500 config GETKERNEL
501 int
502 default 0 if !CONFIG_GETKERNEL
503 default 1 if CONFIG_GETKERNEL
504
505 config RUNMAKE
506 int
507 default 0 if !CONFIG_RUNMAKE
508 default 1 if CONFIG_RUNMAKE
509
510 config STRIP
511 int
512 default 0 if !CONFIG_STRIP
513 default 1 if CONFIG_STRIP
514
515 config REPORT
516 int
517 default 0 if !CONFIG_REPORT
518 default 1 if CONFIG_REPORT
519
520 config VIMLANG
521 int
522 default 0 if !CONFIG_VIMLANG
523 default 1 if CONFIG_VIMLANG
524
525 config RUN_ICA
526 int
527 default 0 if !CONFIG_ICA
528 default 1 if CONFIG_ICA
529
530 config RUN_FARCE
531 int
532 default 0 if !CONFIG_FARCE
533 default 1 if CONFIG_FARCE
534
535 config CLEAN
536 int
537 default 0 if !CONFIG_REBUILD
538 default 1 if CONFIG_REBUILD
Note: See TracBrowser for help on using the repository browser.