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