source: common/config@ c155162

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

Fixed a comment

  • Property mode set to 100644
File size: 1.8 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
[916a8e9]16# Any missing file will be downloaded and archived here,
17# if the user has the right priviledges.
[e2860d3]18SRC_ARCHIVE=
[e1edff3]19
[0170229]20#--- Download the source packages 0(no)/1(yes)
21HPKG=0
22
23#--- Run the makefile at the end 0(no)/1(yes)
[916a8e9]24# In BLFS the Makefile can't be run automatically
[0170229]25RUNMAKE=0
26
[12a5707]27#--- Run test suites [0-3]
28# 0 = none
29# 1 = only chapter06 Glibc, GCC and Binutils testsuites
[916a8e9]30# (in BLFS, run the package testsuite, if any)
[12a5707]31# 2 = all chapter06 testsuites
[916a8e9]32# (in BLFS, alias to 1)
[12a5707]33# 3 = all chapter05 and chapter06 testsuites
[916a8e9]34# (in BLFS, alias to 1)
35# (in CLFS, alias to 2)
[d540567]36TEST=1
[0170229]37
38#--- Run the stripping phases 0(no)/1(yes)
[d540567]39STRIP=1
[0170229]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)
[0ebdc33]48VIMLANG=1
[0170229]49
[916a8e9]50#--- Language information in /etc/profile See <locale -a> for values
[0a7e5d0]51LANG=$LANG
[650134b]52LC_ALL=$LC_ALL # (not used in LFS)
[0170229]53
[d540567]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"
[916a8e9]57# Not used in LFS
[d540567]58KEYMAP=none
[0170229]59
[916a8e9]60#=== Variables needed by ICA (Not implemented yet :-/)===
[12a5707]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
[0170229]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.