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