source: common/config@ a241c33

1.0 2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since a241c33 was 877cc6a, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Merged experimental branch to trunk.
Updated TODO.

  • Property mode set to 100644
File size: 1.8 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# Any missing file will be downloaded and archived here,
17# if the user has the right priviledges.
18SRC_ARCHIVE=
19
20#--- Download the source packages 0(no)/1(yes)
21HPKG=0
22
23#--- Run the makefile at the end 0(no)/1(yes)
24# In BLFS the Makefile can't be run automatically
25RUNMAKE=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)
36TEST=1
37
38#--- Run the stripping phases 0(no)/1(yes)
39STRIP=1
40
41#--- page definition for groff letter/A4
42PAGE=letter
43
44#--- set default timezone.
45TIMEZONE=America/Toronto
46
47#--- install the optional vim-lang package 0(no)/1(yes)
48VIMLANG=1
49
50#--- Language information in /etc/profile See <locale -a> for values
51LANG=$LANG
52LC_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
58KEYMAP=none
59
60#=== Variables needed by ICA (Not implemented yet :-/)===
61#--- Run ICA testing 0/1 0(no)/1(yes)
62RUN_ICA=0
63
64#--- The number of final stage builds to create and compare
65ITERATIONS=
66
67#--- ICA report log directory
68ICALOGDIR=$JHALFSDIR/logs/ICA
69
70#==== INTERNAL VARIABLES ====
71# Don't edit it unless you know what you are doing
72
73#--- Working directories
74JHALFSDIR=$BUILDDIR/jhalfs
75 LOGDIR=$JHALFSDIR/logs
Note: See TracBrowser for help on using the repository browser.