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 |
|
---|
11 | #--- Mount point for the build
|
---|
12 | BUILDDIR=/mnt/build_dir
|
---|
13 |
|
---|
14 | # Create SBU and disk usage report n(no)/y(yes)
|
---|
15 | # NOTE: requires to have bc installed on the host
|
---|
16 | REPORT=y
|
---|
17 |
|
---|
18 | #=== Getting packages ===
|
---|
19 | # Files will be retrieved from the local archive SRC_ARCHIVE
|
---|
20 | # (if defined) or the 'net and will be stored in $BUILDDIR/sources
|
---|
21 | #--- Download the source packages n(no)/y(yes)
|
---|
22 | GETPKG=n
|
---|
23 |
|
---|
24 | #--- The local repository for packages/file
|
---|
25 | # Used only if GETPKG = y
|
---|
26 | # Any missing file will be downloaded and archived here,
|
---|
27 | # if the user has the right priviledges.
|
---|
28 | SRC_ARCHIVE=$SRC_ARCHIVE
|
---|
29 |
|
---|
30 | # --- Server used if the file isn't found in SRC_ARCHIVE.
|
---|
31 | # As a last resort, the file will dowloaded from upstream, if possible.
|
---|
32 | SERVER=ftp://ftp.lfs-matrix.net
|
---|
33 |
|
---|
34 | #=== Build options ===
|
---|
35 | #--- Automatically run the makefile once it has been created n(no)/y(yes)
|
---|
36 | RUNMAKE=n
|
---|
37 |
|
---|
38 | #--- Optimize the build [0-2]
|
---|
39 | # 0 = no optimization
|
---|
40 | # 1 = optimize final system only
|
---|
41 | # 2 = optimize both temporary tools and final system
|
---|
42 | #
|
---|
43 | # Optimization values are set in optimize/* files
|
---|
44 | OPTIMIZE=0
|
---|
45 |
|
---|
46 | #--- Run test suites [0-3]
|
---|
47 | # 0 = none
|
---|
48 | # 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
---|
49 | # 2 = all chapter06 testsuites
|
---|
50 | # 3 = all chapter05 and chapter06 testsuites
|
---|
51 | # (in CLFS and HLFS, alias to 2)
|
---|
52 | TEST=1
|
---|
53 |
|
---|
54 | #--- Bomb on test suites failures?
|
---|
55 | # n = no, I want to build the full system and review the logs
|
---|
56 | # y = yes, bomb at the first test suite failure to can review the build dir
|
---|
57 | BOMB_TEST=n
|
---|
58 |
|
---|
59 | #--- Run the stripping phases n(no)/y(yes)
|
---|
60 | STRIP=y
|
---|
61 |
|
---|
62 | #--- page definition for groff letter/A4
|
---|
63 | PAGE=letter
|
---|
64 |
|
---|
65 | #--- set default timezone.
|
---|
66 | TIMEZONE=${TZ:-GMT}
|
---|
67 |
|
---|
68 | #--- install the optional vim-lang package n(no)/y(yes)
|
---|
69 | VIMLANG=y
|
---|
70 |
|
---|
71 | #--- Language information in /etc/profile See <locale -a> for values
|
---|
72 | LANG=$LANG
|
---|
73 | LC_ALL=$LC_ALL # (not used in LFS)
|
---|
74 |
|
---|
75 | #--- Include the keymap in the kernel if defined. Path to the
|
---|
76 | # keymap file relative to /usr/share/kbd/keymaps/
|
---|
77 | # (e.g., i386/qwerty/us.map.gz) or "none"
|
---|
78 | # Not used in LFS
|
---|
79 | KEYMAP=none
|
---|
80 |
|
---|
81 | #=== Variables needed by iterative comparison analysis ===
|
---|
82 | #--- Should some iterative comparison analysis by made? n(no)/y(yes)
|
---|
83 | COMPARE=n
|
---|
84 |
|
---|
85 | #--- The number of final stage builds to create and compare, min. 2, max. 5
|
---|
86 | ITERATIONS=3
|
---|
87 |
|
---|
88 | #--- Run ICA testing n(no)/y(yes)
|
---|
89 | RUN_ICA=n
|
---|
90 |
|
---|
91 | #--- Run farce testing n(no)/y(yes)
|
---|
92 | RUN_FARCE=n
|
---|
93 |
|
---|
94 | #==== INTERNAL VARIABLES ====
|
---|
95 | # Don't edit it unless you know what you are doing
|
---|
96 |
|
---|
97 | #--- Working directories
|
---|
98 | SCRIPT_ROOT=jhalfs
|
---|
99 | JHALFSDIR=$BUILDDIR/$SCRIPT_ROOT
|
---|
100 | LOGDIR=$JHALFSDIR/logs
|
---|
101 | TESTLOGDIR=$JHALFSDIR/test-logs
|
---|
102 |
|
---|
103 | #--- File listing package contents (from where package sources dir is extracted)
|
---|
104 | PKG_LST=unpacked
|
---|
105 |
|
---|
106 | #--- ICA report log directory
|
---|
107 | ICALOGDIR=$LOGDIR/ICA
|
---|
108 |
|
---|
109 | #--- farce report log directory
|
---|
110 | FARCELOGDIR=$LOGDIR/farce
|
---|