1 | #####
|
---|
2 | #
|
---|
3 | # Configuration file for the jhahlfs build script
|
---|
4 | #
|
---|
5 | #####
|
---|
6 |
|
---|
7 | declare -r SVN="svn://svn.linuxfromscratch.org"
|
---|
8 | declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
|
---|
9 | declare -r LOG=000-jhahlfs.log
|
---|
10 |
|
---|
11 | #--- Mount point for the build
|
---|
12 | BUILDDIR=/mnt/hlfs
|
---|
13 |
|
---|
14 | #--- Download the source packages 0(no)/1(yes)
|
---|
15 | HPKG=0
|
---|
16 |
|
---|
17 | #--- Run the makefile at the end 0(no)/1(yes)
|
---|
18 | RUNMAKE=0
|
---|
19 |
|
---|
20 | #--- Run test suites 0(no)/1(yes)
|
---|
21 | TEST=0
|
---|
22 |
|
---|
23 | #--- Run the toolchain tests 0(no)/1(yes)
|
---|
24 | TOOLCHAINTEST=0
|
---|
25 |
|
---|
26 | #--- Run the stripping phases 0(no)/1(yes)
|
---|
27 | STRIP=1
|
---|
28 |
|
---|
29 | #--- page definition for groff letter/A4
|
---|
30 | PAGE=letter
|
---|
31 |
|
---|
32 | #--- set default timezone.
|
---|
33 | TIMEZONE=America/Toronto
|
---|
34 |
|
---|
35 | #--- install the optional vim-lang package 0(no)/1(yes)
|
---|
36 | VIMLANG=0
|
---|
37 |
|
---|
38 | #--- Location of fstab file (if empty, a template is created)
|
---|
39 | FSTAB=
|
---|
40 |
|
---|
41 | #--- Location of kernel config file (if the kernel is to be compiled)
|
---|
42 | CONFIG=
|
---|
43 |
|
---|
44 | #--- Which library model to use uclibc/glibc
|
---|
45 | MODEL=glibc
|
---|
46 |
|
---|
47 | #--- The host system has grsecurity options enabled 0(no)/1(yes)
|
---|
48 | GRSECURITY_HOST=0
|
---|
49 |
|
---|
50 | #--- Language information, /etc/profile see <locale -a> for values
|
---|
51 | LC_ALL=en_CA
|
---|
52 | LANG=en_CA
|
---|
53 |
|
---|
54 | #--- Include the keymap in the kernel if defined
|
---|
55 | KEYMAP=/usr/share/kbd/keymaps/i386/qwerty/us.map.gz
|
---|
56 |
|
---|
57 | #--- Book's sources directory
|
---|
58 | # If you have previously checked out the book from the repository
|
---|
59 | BOOK=
|
---|
60 |
|
---|
61 | #==== INTERNAL VARIABLES ====
|
---|
62 | # Don't edit it unless you know what you are doing
|
---|
63 |
|
---|
64 | #--- Default stylesheet
|
---|
65 | XSL=dump-hlfs-scripts.xsl
|
---|
66 |
|
---|
67 | #--- Files that will be copied to $JHAHLFSDIR
|
---|
68 | FILES="hlfs-functions dump-hlfs-scripts.xsl hlfs-patcheslist_.xsl"
|
---|
69 |
|
---|
70 | #--- Working directories
|
---|
71 | JHAHLFSDIR=$BUILDDIR/jhahlfs
|
---|
72 | LOGDIR=$JHAHLFSDIR/logs
|
---|
73 | MKFILE=$JHAHLFSDIR/Makefile
|
---|
74 |
|
---|
75 | #--- FTP/HTTP mirror used as fallback (full path)
|
---|
76 | SERVER=ftp://anduin.linuxfromscratch.org/LFS/conglomeration
|
---|
77 |
|
---|
78 | #--- Book version
|
---|
79 | HLFSVRS=development
|
---|
80 |
|
---|
81 |
|
---|
82 |
|
---|