source: common/config@ d591ee5

experimental
Last change on this file since d591ee5 was d591ee5, checked in by George Boudreau <georgeb@…>, 18 years ago

Change package download functions back to HTTP until the FTP mirror rotation problems solved

  • Property mode set to 100644
File size: 1.5 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/SourceFiles
14
15#--- The local repository for packages/file
16# Any downloaded files will be archived here
17SRC_ARCHIVE=
18
19#--- Download the source packages 0(no)/1(yes)
20HPKG=0
21
22#--- Run the makefile at the end 0(no)/1(yes)
23RUNMAKE=0
24
25#--- Run test suites [0-3]
26# 0 = none
27# 1 = only chapter06 Glibc, GCC and Binutils testsuites
28# 2 = all chapter06 testsuites
29# 3 = all chapter05 and chapter06 testsuites
30TEST=1
31
32#--- Run the stripping phases 0(no)/1(yes)
33STRIP=1
34
35#--- page definition for groff letter/A4
36PAGE=letter
37
38#--- set default timezone.
39TIMEZONE=America/Toronto
40
41#--- install the optional vim-lang package 0(no)/1(yes)
42VIMLANG=1
43
44#--- Language information, /etc/profile see <locale -a> for values
45LC_ALL=$LC_ALL
46LANG=$LANG
47
48#--- Include the keymap in the kernel if defined. Path to the
49# keymap file relative to /usr/share/kbd/keymaps/
50# (e.g., i386/qwerty/us.map.gz) or "none"
51KEYMAP=none
52
53#=== Variables needed by ICA ===
54#--- Run ICA testing 0/1 0(no)/1(yes)
55RUN_ICA=0
56
57#--- The number of final stage builds to create and compare
58ITERATIONS=
59
60#--- ICA report log directory
61ICALOGDIR=$JHALFSDIR/logs/ICA
62
63#==== INTERNAL VARIABLES ====
64# Don't edit it unless you know what you are doing
65
66#--- Working directories
67JHALFSDIR=$BUILDDIR/jhalfs
68 LOGDIR=$JHALFSDIR/logs
Note: See TracBrowser for help on using the repository browser.