[877cc6a] | 1 | #####
|
---|
| 2 | #
|
---|
| 3 | # common configuration file
|
---|
| 4 | #
|
---|
| 5 | # $Id$
|
---|
| 6 | #####
|
---|
| 7 |
|
---|
| 8 | declare -r SVN="svn://svn.linuxfromscratch.org"
|
---|
| 9 | declare -r LOG=000-masterscript.log
|
---|
| 10 |
|
---|
| 11 | #--- Mount point for the build
|
---|
| 12 | BUILDDIR=/mnt/build_dir
|
---|
| 13 |
|
---|
[15cad16] | 14 | #=== Getting packages ===
|
---|
| 15 | #--- Download the source packages 0(no)/1(yes)
|
---|
| 16 | GETPKG=0
|
---|
| 17 |
|
---|
[877cc6a] | 18 | #--- The local repository for packages/file
|
---|
[15cad16] | 19 | # Used only if GETPKG = 1
|
---|
[877cc6a] | 20 | # Any missing file will be downloaded and archived here,
|
---|
| 21 | # if the user has the right priviledges.
|
---|
[bd5bf06] | 22 | SRC_ARCHIVE=$SRC_ARCHIVE
|
---|
[877cc6a] | 23 |
|
---|
[15cad16] | 24 | # --- Server used as fallback if the file isn't found in
|
---|
| 25 | # SRC_ARCHIVE and/or can't be dowloaded from upstream
|
---|
| 26 | SERVER=ftp://ftp.lfs-matrix.net
|
---|
[877cc6a] | 27 |
|
---|
[15cad16] | 28 | #=== Build options ===
|
---|
[877cc6a] | 29 | #--- Run the makefile at the end 0(no)/1(yes)
|
---|
| 30 | # In BLFS the Makefile can't be run automatically
|
---|
| 31 | RUNMAKE=0
|
---|
| 32 |
|
---|
| 33 | #--- Run test suites [0-3]
|
---|
| 34 | # 0 = none
|
---|
| 35 | # 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
---|
| 36 | # (in BLFS, run the package testsuite, if any)
|
---|
| 37 | # 2 = all chapter06 testsuites
|
---|
| 38 | # (in BLFS, alias to 1)
|
---|
| 39 | # 3 = all chapter05 and chapter06 testsuites
|
---|
| 40 | # (in BLFS, alias to 1)
|
---|
| 41 | # (in CLFS, alias to 2)
|
---|
| 42 | TEST=1
|
---|
| 43 |
|
---|
[453bef0] | 44 | # Create SBU and disk usage report 0(no)/1(yes)
|
---|
| 45 | # NOTE: requires to have bc installed on the host
|
---|
| 46 | REPORT=1
|
---|
| 47 |
|
---|
[877cc6a] | 48 | #--- Run the stripping phases 0(no)/1(yes)
|
---|
| 49 | STRIP=1
|
---|
| 50 |
|
---|
| 51 | #--- page definition for groff letter/A4
|
---|
| 52 | PAGE=letter
|
---|
| 53 |
|
---|
| 54 | #--- set default timezone.
|
---|
| 55 | TIMEZONE=America/Toronto
|
---|
| 56 |
|
---|
| 57 | #--- install the optional vim-lang package 0(no)/1(yes)
|
---|
| 58 | VIMLANG=1
|
---|
| 59 |
|
---|
| 60 | #--- Language information in /etc/profile See <locale -a> for values
|
---|
| 61 | LANG=$LANG
|
---|
| 62 | LC_ALL=$LC_ALL # (not used in LFS)
|
---|
| 63 |
|
---|
| 64 | #--- Include the keymap in the kernel if defined. Path to the
|
---|
| 65 | # keymap file relative to /usr/share/kbd/keymaps/
|
---|
| 66 | # (e.g., i386/qwerty/us.map.gz) or "none"
|
---|
| 67 | # Not used in LFS
|
---|
| 68 | KEYMAP=none
|
---|
| 69 |
|
---|
[45f82718] | 70 | #=== Variables needed by iterative comparison analysis ===
|
---|
| 71 | #--- Should some iterative comparison analysis by made? 0(no)/1(yes)
|
---|
| 72 | COMPARE=0
|
---|
[877cc6a] | 73 |
|
---|
[45f82718] | 74 | #--- The number of final stage builds to create and compare, min. 2, max. 5
|
---|
| 75 | ITERATIONS=3
|
---|
[877cc6a] | 76 |
|
---|
[45f82718] | 77 | #--- Run ICA testing 0(no)/1(yes)
|
---|
| 78 | RUN_ICA=0
|
---|
| 79 |
|
---|
| 80 | #--- Run farce testing 0(no)/1(yes)
|
---|
| 81 | RUN_FARCE=0
|
---|
[877cc6a] | 82 |
|
---|
| 83 | #==== INTERNAL VARIABLES ====
|
---|
| 84 | # Don't edit it unless you know what you are doing
|
---|
| 85 |
|
---|
| 86 | #--- Working directories
|
---|
| 87 | JHALFSDIR=$BUILDDIR/jhalfs
|
---|
| 88 | LOGDIR=$JHALFSDIR/logs
|
---|
[45f82718] | 89 |
|
---|
| 90 | #--- ICA report log directory
|
---|
| 91 | ICALOGDIR=$LOGDIR/ICA
|
---|
| 92 |
|
---|
| 93 | #--- farce report log directory
|
---|
| 94 | FARCELOGDIR=$LOGDIR/farce
|
---|