[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 | declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
|
---|
| 11 |
|
---|
| 12 | #--- Mount point for the build
|
---|
| 13 | BUILDDIR=/mnt/build_dir
|
---|
| 14 |
|
---|
| 15 | #--- The local repository for packages/file
|
---|
[bd5bf06] | 16 | # Used only if HPKG = 1
|
---|
[877cc6a] | 17 | # Any missing file will be downloaded and archived here,
|
---|
| 18 | # if the user has the right priviledges.
|
---|
[bd5bf06] | 19 | SRC_ARCHIVE=$SRC_ARCHIVE
|
---|
[877cc6a] | 20 |
|
---|
| 21 | #--- Download the source packages 0(no)/1(yes)
|
---|
| 22 | HPKG=0
|
---|
| 23 |
|
---|
| 24 | #--- Run the makefile at the end 0(no)/1(yes)
|
---|
| 25 | # In BLFS the Makefile can't be run automatically
|
---|
| 26 | RUNMAKE=0
|
---|
| 27 |
|
---|
| 28 | #--- Run test suites [0-3]
|
---|
| 29 | # 0 = none
|
---|
| 30 | # 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
---|
| 31 | # (in BLFS, run the package testsuite, if any)
|
---|
| 32 | # 2 = all chapter06 testsuites
|
---|
| 33 | # (in BLFS, alias to 1)
|
---|
| 34 | # 3 = all chapter05 and chapter06 testsuites
|
---|
| 35 | # (in BLFS, alias to 1)
|
---|
| 36 | # (in CLFS, alias to 2)
|
---|
| 37 | TEST=1
|
---|
| 38 |
|
---|
| 39 | #--- Run the stripping phases 0(no)/1(yes)
|
---|
| 40 | STRIP=1
|
---|
| 41 |
|
---|
| 42 | #--- page definition for groff letter/A4
|
---|
| 43 | PAGE=letter
|
---|
| 44 |
|
---|
| 45 | #--- set default timezone.
|
---|
| 46 | TIMEZONE=America/Toronto
|
---|
| 47 |
|
---|
| 48 | #--- install the optional vim-lang package 0(no)/1(yes)
|
---|
| 49 | VIMLANG=1
|
---|
| 50 |
|
---|
| 51 | #--- Language information in /etc/profile See <locale -a> for values
|
---|
| 52 | LANG=$LANG
|
---|
| 53 | LC_ALL=$LC_ALL # (not used in LFS)
|
---|
| 54 |
|
---|
| 55 | #--- Include the keymap in the kernel if defined. Path to the
|
---|
| 56 | # keymap file relative to /usr/share/kbd/keymaps/
|
---|
| 57 | # (e.g., i386/qwerty/us.map.gz) or "none"
|
---|
| 58 | # Not used in LFS
|
---|
| 59 | KEYMAP=none
|
---|
| 60 |
|
---|
| 61 | #=== Variables needed by ICA (Not implemented yet :-/)===
|
---|
| 62 | #--- Run ICA testing 0/1 0(no)/1(yes)
|
---|
| 63 | RUN_ICA=0
|
---|
| 64 |
|
---|
| 65 | #--- The number of final stage builds to create and compare
|
---|
| 66 | ITERATIONS=
|
---|
| 67 |
|
---|
| 68 | #--- ICA report log directory
|
---|
| 69 | ICALOGDIR=$JHALFSDIR/logs/ICA
|
---|
| 70 |
|
---|
| 71 | #==== INTERNAL VARIABLES ====
|
---|
| 72 | # Don't edit it unless you know what you are doing
|
---|
| 73 |
|
---|
| 74 | #--- Working directories
|
---|
| 75 | JHALFSDIR=$BUILDDIR/jhalfs
|
---|
| 76 | LOGDIR=$JHALFSDIR/logs
|
---|