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/build_dir
|
---|
14 |
|
---|
15 | #--- The local repository for packages/file
|
---|
16 | # Any missing file will be downloaded and archived here,
|
---|
17 | # if the user has the right priviledges.
|
---|
18 | SRC_ARCHIVE=
|
---|
19 |
|
---|
20 | #--- Download the source packages 0(no)/1(yes)
|
---|
21 | HPKG=0
|
---|
22 |
|
---|
23 | #--- Run the makefile at the end 0(no)/1(yes)
|
---|
24 | # In BLFS the Makefile can't be run automatically
|
---|
25 | RUNMAKE=0
|
---|
26 |
|
---|
27 | #--- Run test suites [0-3]
|
---|
28 | # 0 = none
|
---|
29 | # 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
---|
30 | # (in BLFS, run the package testsuite, if any)
|
---|
31 | # 2 = all chapter06 testsuites
|
---|
32 | # (in BLFS, alias to 1)
|
---|
33 | # 3 = all chapter05 and chapter06 testsuites
|
---|
34 | # (in BLFS, alias to 1)
|
---|
35 | # (in CLFS, alias to 2)
|
---|
36 | TEST=1
|
---|
37 |
|
---|
38 | #--- Run the stripping phases 0(no)/1(yes)
|
---|
39 | STRIP=1
|
---|
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)
|
---|
48 | VIMLANG=1
|
---|
49 |
|
---|
50 | #--- Language information in /etc/profile See <locale -a> for values
|
---|
51 | LANG=$LANG
|
---|
52 | LC_ALL=$LC_ALL # (not used in LFS)
|
---|
53 |
|
---|
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"
|
---|
57 | # Not used in LFS
|
---|
58 | KEYMAP=none
|
---|
59 |
|
---|
60 | #=== Variables needed by ICA (Not implemented yet :-/)===
|
---|
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 |
|
---|
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
|
---|