89 lines
2.1 KiB
Text
89 lines
2.1 KiB
Text
#####
|
|
#
|
|
# common configuration file
|
|
#
|
|
# $Id$
|
|
#####
|
|
|
|
declare -r SVN="svn://svn.linuxfromscratch.org"
|
|
declare -r LOG=000-masterscript.log
|
|
declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
|
|
|
|
#--- Mount point for the build
|
|
BUILDDIR=/mnt/build_dir
|
|
|
|
#--- The local repository for packages/file
|
|
# Used only if HPKG = 1
|
|
# Any missing file will be downloaded and archived here,
|
|
# if the user has the right priviledges.
|
|
SRC_ARCHIVE=$SRC_ARCHIVE
|
|
|
|
#--- Download the source packages 0(no)/1(yes)
|
|
HPKG=0
|
|
|
|
#--- Run the makefile at the end 0(no)/1(yes)
|
|
# In BLFS the Makefile can't be run automatically
|
|
RUNMAKE=0
|
|
|
|
#--- Run test suites [0-3]
|
|
# 0 = none
|
|
# 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
|
# (in BLFS, run the package testsuite, if any)
|
|
# 2 = all chapter06 testsuites
|
|
# (in BLFS, alias to 1)
|
|
# 3 = all chapter05 and chapter06 testsuites
|
|
# (in BLFS, alias to 1)
|
|
# (in CLFS, alias to 2)
|
|
TEST=1
|
|
|
|
# Create SBU and disk usage report 0(no)/1(yes)
|
|
# NOTE: requires to have bc installed on the host
|
|
REPORT=1
|
|
|
|
#--- Run the stripping phases 0(no)/1(yes)
|
|
STRIP=1
|
|
|
|
#--- page definition for groff letter/A4
|
|
PAGE=letter
|
|
|
|
#--- set default timezone.
|
|
TIMEZONE=America/Toronto
|
|
|
|
#--- install the optional vim-lang package 0(no)/1(yes)
|
|
VIMLANG=1
|
|
|
|
#--- Language information in /etc/profile See <locale -a> for values
|
|
LANG=$LANG
|
|
LC_ALL=$LC_ALL # (not used in LFS)
|
|
|
|
#--- Include the keymap in the kernel if defined. Path to the
|
|
# keymap file relative to /usr/share/kbd/keymaps/
|
|
# (e.g., i386/qwerty/us.map.gz) or "none"
|
|
# Not used in LFS
|
|
KEYMAP=none
|
|
|
|
#=== Variables needed by iterative comparison analysis ===
|
|
#--- Should some iterative comparison analysis by made? 0(no)/1(yes)
|
|
COMPARE=0
|
|
|
|
#--- The number of final stage builds to create and compare, min. 2, max. 5
|
|
ITERATIONS=3
|
|
|
|
#--- Run ICA testing 0(no)/1(yes)
|
|
RUN_ICA=0
|
|
|
|
#--- Run farce testing 0(no)/1(yes)
|
|
RUN_FARCE=0
|
|
|
|
#==== INTERNAL VARIABLES ====
|
|
# Don't edit it unless you know what you are doing
|
|
|
|
#--- Working directories
|
|
JHALFSDIR=$BUILDDIR/jhalfs
|
|
LOGDIR=$JHALFSDIR/logs
|
|
|
|
#--- ICA report log directory
|
|
ICALOGDIR=$LOGDIR/ICA
|
|
|
|
#--- farce report log directory
|
|
FARCELOGDIR=$LOGDIR/farce
|