1 | #####
|
---|
2 | #
|
---|
3 | # common configuration file
|
---|
4 | #
|
---|
5 | # $Id$
|
---|
6 | #####
|
---|
7 |
|
---|
8 | declare -r SVN="svn://svn.linuxfromscratch.org"
|
---|
9 | declare -r LOG=000-masterscript.log
|
---|
10 | declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
|
---|
11 |
|
---|
12 | #--- Mount point for the build
|
---|
13 | BUILDDIR=/mnt/SourceFiles
|
---|
14 |
|
---|
15 | #--- The local repository for packages/file
|
---|
16 | # Any downloaded files will be archived here
|
---|
17 | SRC_ARCHIVE=
|
---|
18 |
|
---|
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 |
|
---|
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
|
---|
30 | TEST=1
|
---|
31 |
|
---|
32 | #--- Run the stripping phases 0(no)/1(yes)
|
---|
33 | STRIP=1
|
---|
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)
|
---|
42 | VIMLANG=1
|
---|
43 |
|
---|
44 | #--- Language information, /etc/profile see <locale -a> for values
|
---|
45 | LC_ALL=$LC_ALL
|
---|
46 | LANG=$LANG
|
---|
47 |
|
---|
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
|
---|
52 |
|
---|
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 |
|
---|
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
|
---|