source: common/config@ 9e4b9a1

experimental
Last change on this file since 9e4b9a1 was 9e4b9a1, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Merged r2575 and r2576 from trunk.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1#####
2#
3# common configuration file
4#
5# $Id$
6#####
7
8declare -r SVN="svn://svn.linuxfromscratch.org"
9declare -r LOG=000-masterscript.log
10declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
11
12#--- Mount point for the build
13BUILDDIR=/mnt/build_dir
14
15#--- The local repository for packages/file
16# Used only if HPKG = 1
17# Any missing file will be downloaded and archived here,
18# if the user has the right priviledges.
19SRC_ARCHIVE=$SRC_ARCHIVE
20
21#--- Download the source packages 0(no)/1(yes)
22HPKG=0
23
24#--- Run the makefile at the end 0(no)/1(yes)
25# In BLFS the Makefile can't be run automatically
26RUNMAKE=0
27
28#--- Run test suites [0-3]
29# 0 = none
30# 1 = only chapter06 Glibc, GCC and Binutils testsuites
31# (in BLFS, run the package testsuite, if any)
32# 2 = all chapter06 testsuites
33# (in BLFS, alias to 1)
34# 3 = all chapter05 and chapter06 testsuites
35# (in BLFS, alias to 1)
36# (in CLFS, alias to 2)
37TEST=1
38
39# Create SBU and disk usage report 0(no)/1(yes)
40# NOTE: requires to have bc installed on the host
41REPORT=1
42
43#--- Run the stripping phases 0(no)/1(yes)
44STRIP=1
45
46#--- page definition for groff letter/A4
47PAGE=letter
48
49#--- set default timezone.
50TIMEZONE=America/Toronto
51
52#--- install the optional vim-lang package 0(no)/1(yes)
53VIMLANG=1
54
55#--- Language information in /etc/profile See <locale -a> for values
56LANG=$LANG
57LC_ALL=$LC_ALL # (not used in LFS)
58
59#--- Include the keymap in the kernel if defined. Path to the
60# keymap file relative to /usr/share/kbd/keymaps/
61# (e.g., i386/qwerty/us.map.gz) or "none"
62# Not used in LFS
63KEYMAP=none
64
65#=== Variables needed by iterative comparison analysis ===
66#--- Should some iterative comparison analysis by made? 0(no)/1(yes)
67COMPARE=0
68
69#--- The number of final stage builds to create and compare, min. 2, max. 5
70ITERATIONS=3
71
72#--- Run ICA testing 0(no)/1(yes)
73RUN_ICA=0
74
75#--- Run farce testing 0(no)/1(yes)
76RUN_FARCE=0
77
78#==== INTERNAL VARIABLES ====
79# Don't edit it unless you know what you are doing
80
81#--- Working directories
82JHALFSDIR=$BUILDDIR/jhalfs
83 LOGDIR=$JHALFSDIR/logs
84
85#--- ICA report log directory
86ICALOGDIR=$LOGDIR/ICA
87
88#--- farce report log directory
89FARCELOGDIR=$LOGDIR/farce
Note: See TracBrowser for help on using the repository browser.