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