[0170229] | 1 | #####
|
---|
| 2 | #
|
---|
[0a7e5d0] | 3 | # common configuration file
|
---|
[0170229] | 4 | #
|
---|
[12a5707] | 5 | # $Id$
|
---|
[0170229] | 6 | #####
|
---|
| 7 |
|
---|
| 8 | declare -r SVN="svn://svn.linuxfromscratch.org"
|
---|
| 9 | declare -r LOG=000-masterscript.log
|
---|
[d591ee5] | 10 | declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
|
---|
[0170229] | 11 |
|
---|
| 12 | #--- Mount point for the build
|
---|
[67e3bc3] | 13 | BUILDDIR=/mnt/build_dir
|
---|
[0170229] | 14 |
|
---|
[e1edff3] | 15 | #--- The local repository for packages/file
|
---|
[902672f] | 16 | # Used only if HPKG = 1
|
---|
[916a8e9] | 17 | # Any missing file will be downloaded and archived here,
|
---|
| 18 | # if the user has the right priviledges.
|
---|
[902672f] | 19 | SRC_ARCHIVE=$SRC_ARCHIVE
|
---|
[e1edff3] | 20 |
|
---|
[0170229] | 21 | #--- Download the source packages 0(no)/1(yes)
|
---|
| 22 | HPKG=0
|
---|
| 23 |
|
---|
| 24 | #--- Run the makefile at the end 0(no)/1(yes)
|
---|
[916a8e9] | 25 | # In BLFS the Makefile can't be run automatically
|
---|
[0170229] | 26 | RUNMAKE=0
|
---|
| 27 |
|
---|
[12a5707] | 28 | #--- Run test suites [0-3]
|
---|
| 29 | # 0 = none
|
---|
| 30 | # 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
---|
[916a8e9] | 31 | # (in BLFS, run the package testsuite, if any)
|
---|
[12a5707] | 32 | # 2 = all chapter06 testsuites
|
---|
[916a8e9] | 33 | # (in BLFS, alias to 1)
|
---|
[12a5707] | 34 | # 3 = all chapter05 and chapter06 testsuites
|
---|
[916a8e9] | 35 | # (in BLFS, alias to 1)
|
---|
| 36 | # (in CLFS, alias to 2)
|
---|
[d540567] | 37 | TEST=1
|
---|
[0170229] | 38 |
|
---|
| 39 | #--- Run the stripping phases 0(no)/1(yes)
|
---|
[d540567] | 40 | STRIP=1
|
---|
[0170229] | 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)
|
---|
[0ebdc33] | 49 | VIMLANG=1
|
---|
[0170229] | 50 |
|
---|
[916a8e9] | 51 | #--- Language information in /etc/profile See <locale -a> for values
|
---|
[0a7e5d0] | 52 | LANG=$LANG
|
---|
[650134b] | 53 | LC_ALL=$LC_ALL # (not used in LFS)
|
---|
[0170229] | 54 |
|
---|
[d540567] | 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"
|
---|
[916a8e9] | 58 | # Not used in LFS
|
---|
[d540567] | 59 | KEYMAP=none
|
---|
[0170229] | 60 |
|
---|
[4612459] | 61 | #=== Variables needed by iterative comparison analysis ===
|
---|
[fb68d23] | 62 | #--- Should some iterative comparison analysis by made? 0(no)/1(yes)
|
---|
| 63 | COMPARE=0
|
---|
| 64 |
|
---|
[2f0a537] | 65 | #--- The number of final stage builds to create and compare, min. 2, max. 5
|
---|
| 66 | ITERATIONS=3
|
---|
[12a5707] | 67 |
|
---|
[fb68d23] | 68 | #--- Run ICA testing 0(no)/1(yes)
|
---|
[4612459] | 69 | RUN_ICA=0
|
---|
| 70 |
|
---|
[12a5707] | 71 | #--- ICA report log directory
|
---|
| 72 | ICALOGDIR=$JHALFSDIR/logs/ICA
|
---|
| 73 |
|
---|
[fb68d23] | 74 | #--- Run farce testing 0(no)/1(yes)
|
---|
[4612459] | 75 | RUN_FARCE=0
|
---|
| 76 |
|
---|
| 77 | #--- farce report log directory
|
---|
| 78 | FARCELOGDIR=$JHALFSDIR/logs/farce
|
---|
| 79 |
|
---|
[0170229] | 80 | #==== INTERNAL VARIABLES ====
|
---|
| 81 | # Don't edit it unless you know what you are doing
|
---|
| 82 |
|
---|
| 83 | #--- Working directories
|
---|
[158b30f] | 84 | JHALFSDIR=$BUILDDIR/jhalfs
|
---|
[0170229] | 85 | LOGDIR=$JHALFSDIR/logs
|
---|