65 lines
1.4 KiB
Text
65 lines
1.4 KiB
Text
#####
|
|
#
|
|
# common configuration file
|
|
#
|
|
# $Id$
|
|
#####
|
|
|
|
declare -r SVN="svn://svn.linuxfromscratch.org"
|
|
declare -r LOG=000-masterscript.log
|
|
|
|
#--- Mount point for the build
|
|
BUILDDIR=/mnt/SourceFiles
|
|
|
|
#--- The local repository for packages/file
|
|
# Any downloaded files will be archived here
|
|
SRC_ARCHIVE=
|
|
|
|
#--- Download the source packages 0(no)/1(yes)
|
|
HPKG=0
|
|
|
|
#--- Run the makefile at the end 0(no)/1(yes)
|
|
RUNMAKE=0
|
|
|
|
#--- Run test suites [0-3]
|
|
# 0 = none
|
|
# 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
|
# 2 = all chapter06 testsuites
|
|
# 3 = all chapter05 and chapter06 testsuites
|
|
TEST=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=0
|
|
|
|
#--- Language information, /etc/profile see <locale -a> for values
|
|
LC_ALL=$LC_ALL
|
|
LANG=$LANG
|
|
|
|
#--- Include the keymap in the kernel if defined
|
|
KEYMAP=/usr/share/kbd/keymaps/i386/qwerty/us.map.gz
|
|
|
|
#=== Variables needed by ICA ===
|
|
#--- Run ICA testing 0/1 0(no)/1(yes)
|
|
RUN_ICA=0
|
|
|
|
#--- The number of final stage builds to create and compare
|
|
ITERATIONS=
|
|
|
|
#--- ICA report log directory
|
|
ICALOGDIR=$JHALFSDIR/logs/ICA
|
|
|
|
#==== INTERNAL VARIABLES ====
|
|
# Don't edit it unless you know what you are doing
|
|
|
|
#--- Working directories
|
|
JHALFSDIR=$BUILDDIR/jhalfs
|
|
LOGDIR=$JHALFSDIR/logs
|