source: common/config@ 26a8fdf

experimental
Last change on this file since 26a8fdf 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
RevLine 
[0170229]1#####
2#
[0a7e5d0]3# common configuration file
[0170229]4#
[12a5707]5# $Id$
[0170229]6#####
7
8declare -r SVN="svn://svn.linuxfromscratch.org"
9declare -r LOG=000-masterscript.log
[d591ee5]10declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
[0170229]11
12#--- Mount point for the build
13BUILDDIR=/mnt/SourceFiles
14
[e1edff3]15#--- The local repository for packages/file
[a346167]16# Any downloaded files will be archived here
[e2860d3]17SRC_ARCHIVE=
[e1edff3]18
[0170229]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
[12a5707]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
[d540567]30TEST=1
[0170229]31
32#--- Run the stripping phases 0(no)/1(yes)
[d540567]33STRIP=1
[0170229]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)
[0ebdc33]42VIMLANG=1
[0170229]43
44#--- Language information, /etc/profile see <locale -a> for values
[0a7e5d0]45LC_ALL=$LC_ALL
46LANG=$LANG
[0170229]47
[d540567]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
[0170229]52
[12a5707]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
[0170229]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.