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