source: common/config@ a4ccd54

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

Merged r2750 from trunk.

  • Property mode set to 100644
File size: 2.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
10
11#--- Mount point for the build
[67e3bc3]12BUILDDIR=/mnt/build_dir
[0170229]13
[17c7894]14# Create SBU and disk usage report 0(no)/1(yes)
15# NOTE: requires to have bc installed on the host
16REPORT=1
17
[3e7af38]18#=== Getting packages ===
19#--- Download the source packages 0(no)/1(yes)
20GETPKG=0
21
[e1edff3]22#--- The local repository for packages/file
[3e7af38]23# Used only if GETPKG = 1
[916a8e9]24# Any missing file will be downloaded and archived here,
25# if the user has the right priviledges.
[902672f]26SRC_ARCHIVE=$SRC_ARCHIVE
[e1edff3]27
[b414549]28# --- Server used if the file isn't found in SRC_ARCHIVE.
29# As a last resort, the file will dowloaded from upstream, if possible.
[3e7af38]30SERVER=ftp://ftp.lfs-matrix.net
[0170229]31
[3e7af38]32#=== Build options ===
[0170229]33#--- Run the makefile at the end 0(no)/1(yes)
34RUNMAKE=0
35
[53588e2]36#--- Optimize the build [0-2]
37# 0 = no optimization
[eca59ce]38# 1 = optimize final system only
39# 2 = optimize both temporary tools and final system
[53588e2]40#
[eca59ce]41# Optimization values are set in optimize/* files
[53588e2]42OPTIMIZE=0
[17c7894]43
[12a5707]44#--- Run test suites [0-3]
45# 0 = none
46# 1 = only chapter06 Glibc, GCC and Binutils testsuites
47# 2 = all chapter06 testsuites
48# 3 = all chapter05 and chapter06 testsuites
[916a8e9]49# (in CLFS, alias to 2)
[d540567]50TEST=1
[0170229]51
52#--- Run the stripping phases 0(no)/1(yes)
[d540567]53STRIP=1
[0170229]54
55#--- page definition for groff letter/A4
56PAGE=letter
57
58#--- set default timezone.
[3a27393]59TIMEZONE=${TZ:-GMT}
[0170229]60
61#--- install the optional vim-lang package 0(no)/1(yes)
[0ebdc33]62VIMLANG=1
[0170229]63
[916a8e9]64#--- Language information in /etc/profile See <locale -a> for values
[0a7e5d0]65LANG=$LANG
[650134b]66LC_ALL=$LC_ALL # (not used in LFS)
[0170229]67
[d540567]68#--- Include the keymap in the kernel if defined. Path to the
69# keymap file relative to /usr/share/kbd/keymaps/
70# (e.g., i386/qwerty/us.map.gz) or "none"
[916a8e9]71# Not used in LFS
[d540567]72KEYMAP=none
[0170229]73
[4612459]74#=== Variables needed by iterative comparison analysis ===
[fb68d23]75#--- Should some iterative comparison analysis by made? 0(no)/1(yes)
76COMPARE=0
77
[2f0a537]78#--- The number of final stage builds to create and compare, min. 2, max. 5
79ITERATIONS=3
[12a5707]80
[fb68d23]81#--- Run ICA testing 0(no)/1(yes)
[4612459]82RUN_ICA=0
83
[fb68d23]84#--- Run farce testing 0(no)/1(yes)
[4612459]85RUN_FARCE=0
86
[0170229]87#==== INTERNAL VARIABLES ====
88# Don't edit it unless you know what you are doing
89
90#--- Working directories
[460ea63]91SCRIPT_ROOT=jhalfs
[e35e794]92 JHALFSDIR=$BUILDDIR/$SCRIPT_ROOT
93 LOGDIR=$JHALFSDIR/logs
94 TESTLOGDIR=$JHALFSDIR/test-logs
[8ba8df4]95
[460ea63]96#--- File listing package contents (from where package sources dir is extracted)
97PKG_LST=unpacked
98
[8ba8df4]99#--- ICA report log directory
100ICALOGDIR=$LOGDIR/ICA
101
102#--- farce report log directory
103FARCELOGDIR=$LOGDIR/farce
Note: See TracBrowser for help on using the repository browser.