source: common/config@ ddde18e

1.0 2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since ddde18e was ddde18e, checked in by George Boudreau <georgeb@…>, 18 years ago

Work on README.. more to come

  • Property mode set to 100644
File size: 2.6 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
10
11#--- Mount point for the build
12BUILDDIR=/mnt/build_dir
13
14# Create SBU and disk usage report 0(no)/1(yes)
15# NOTE: requires to have bc installed on the host
16REPORT=1
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 0(no)/1(yes)
22GETPKG=0
23
24#--- The local repository for packages/file
25# Used only if GETPKG = 1
26# Any missing file will be downloaded and archived here,
27# if the user has the right priviledges.
28SRC_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.
32SERVER=ftp://ftp.lfs-matrix.net
33
34#=== Build options ===
35#--- Automatically run the makefile once it has been created 0(no)/1(yes)
36RUNMAKE=0
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
44OPTIMIZE=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, alias to 2)
52TEST=1
53
54#--- Run the stripping phases 0(no)/1(yes)
55STRIP=1
56
57#--- page definition for groff letter/A4
58PAGE=letter
59
60#--- set default timezone.
61TIMEZONE=${TZ:-GMT}
62
63#--- install the optional vim-lang package 0(no)/1(yes)
64VIMLANG=1
65
66#--- Language information in /etc/profile See <locale -a> for values
67LANG=$LANG
68LC_ALL=$LC_ALL # (not used in LFS)
69
70#--- Include the keymap in the kernel if defined. Path to the
71# keymap file relative to /usr/share/kbd/keymaps/
72# (e.g., i386/qwerty/us.map.gz) or "none"
73# Not used in LFS
74KEYMAP=none
75
76#=== Variables needed by iterative comparison analysis ===
77#--- Should some iterative comparison analysis by made? 0(no)/1(yes)
78COMPARE=0
79
80#--- The number of final stage builds to create and compare, min. 2, max. 5
81ITERATIONS=3
82
83#--- Run ICA testing 0(no)/1(yes)
84RUN_ICA=0
85
86#--- Run farce testing 0(no)/1(yes)
87RUN_FARCE=0
88
89#==== INTERNAL VARIABLES ====
90# Don't edit it unless you know what you are doing
91
92#--- Working directories
93SCRIPT_ROOT=jhalfs
94 JHALFSDIR=$BUILDDIR/$SCRIPT_ROOT
95 LOGDIR=$JHALFSDIR/logs
96 TESTLOGDIR=$JHALFSDIR/test-logs
97
98#--- File listing package contents (from where package sources dir is extracted)
99PKG_LST=unpacked
100
101#--- ICA report log directory
102ICALOGDIR=$LOGDIR/ICA
103
104#--- farce report log directory
105FARCELOGDIR=$LOGDIR/farce
Note: See TracBrowser for help on using the repository browser.