1 | #####
|
---|
2 | #
|
---|
3 | # Configuration file for the CLFS module
|
---|
4 | #
|
---|
5 | # $Id$
|
---|
6 | #
|
---|
7 | #####
|
---|
8 | declare -r FTP=ftp://ftp.linuxfromscratch.org/pub/lfs/conglomeration
|
---|
9 |
|
---|
10 | #--- Which target architecture you want to build for,
|
---|
11 | # used to select proper book and set TARGETS
|
---|
12 | #--------------------------------
|
---|
13 | TARGET32=""
|
---|
14 | TARGET=
|
---|
15 | # >>>> 32-32 BUILD <<<<
|
---|
16 | ARCH=x86 ; TARGET="i486-pc-linux-gnu"
|
---|
17 | # ARCH=x86 ; TARGET="i586-pc-linux-gnu"
|
---|
18 | # ARCH=x86 ; TARGET="i686-pc-linux-gnu"
|
---|
19 | # ARCH=ppc ; TARGET="powerpc-unknown-linux-gnu"
|
---|
20 | # ARCH=mips ; TARGET="mipsel-unknown-linux-gnu"
|
---|
21 | # ARCH=mips ; TARGET="mips-unknown-linux-gnu"
|
---|
22 | # ARCH=sparc ; TARGET="sparcv9-unknown-linux-gnu"
|
---|
23 | # ARCH=sparcv8 ; TARGET="sparc-unknown-linux-gnu"
|
---|
24 | #--------------------------------
|
---|
25 | # >>>> 64-64 BUILD <<<<
|
---|
26 | # ARCH=x86_64-64 ; TARGET="x86_64-unknown-linux-gnu"
|
---|
27 | # ARCH=mips64-64 ; TARGET="mipsel-unknown-linux-gnu"
|
---|
28 | # ARCH=mips64-64 ; TARGET="mips-unknown-linux-gnu"
|
---|
29 | # ARCH=sparc64-64 ; TARGET="sparc64-unknown-linux-gnu"
|
---|
30 | # ARCH=alpha ; TARGET="alpha-unknown-linux-gnu"
|
---|
31 | #--------------------------------
|
---|
32 | # >>>> MULTILIB 32/64 <<<<
|
---|
33 | # ARCH=x86_64 ; TARGET="x86_64-unknown-linux-gnu" ; TARGET32="i686-pc-linux-gnu"
|
---|
34 | # ARCH=mips64 ; TARGET="mipsel-unknown-linux-gnu" ; TARGET32="mipsel-unknown-linux-gnu"
|
---|
35 | # ARCH=mips64 ; TARGET="mips-unknown-linux-gnu" ; TARGET32="mips-unknown-linux-gnu"
|
---|
36 | # ARCH=sparc64 ; TARGET="sparc64-unknown-linux-gnu" ; TARGET32="sparcv9-unknown-linux-gnu"
|
---|
37 | # ARCH=ppc64 ; TARGET="powerpc64-unknown-linux-gnu" ; TARGET32="powerpc-unknown-linux-gnu"
|
---|
38 |
|
---|
39 | #--- What build method should be used chroot/boot
|
---|
40 | # NOTE: not all combinations are 'bootable' yet.
|
---|
41 | METHOD=chroot
|
---|
42 |
|
---|
43 | #--- Location of fstab file (if empty, a template is created)
|
---|
44 | FSTAB=
|
---|
45 |
|
---|
46 | #--- Fully qualified path to a kernel config file
|
---|
47 | # If no config file is specified the kernel is NOT compiled
|
---|
48 | CONFIG=
|
---|
49 |
|
---|
50 | #--- If METHOD=boot, location of boot-kernel config file
|
---|
51 | # NOTE: this setting is required
|
---|
52 | BOOT_CONFIG=
|
---|
53 |
|
---|
54 | #--- Book's sources directory
|
---|
55 | # If you have previously checked out the book from the repository
|
---|
56 | BOOK=
|
---|
57 |
|
---|
58 | #==== INTERNAL VARIABLES ====
|
---|
59 | # Don't edit it unless you know what you are doing
|
---|
60 |
|
---|
61 | #--- Extra files that need be copied to $JHALFSDIR
|
---|
62 | FILES="patcheslist.xsl packageslist.xsl"
|
---|
63 |
|
---|
64 | #--- Default stylesheet
|
---|
65 | XSL=clfs.xsl
|
---|
66 |
|
---|
67 | #--- Book version
|
---|
68 | LFSVRS=development
|
---|
69 |
|
---|
70 | #--- Name of the makefile
|
---|
71 | MKFILE=$JHALFSDIR/Makefile
|
---|
72 |
|
---|
73 | #--- FTP/HTTP mirror used as fallback (full path)
|
---|
74 | SERVER=ftp://anduin.linuxfromscratch.org/LFS/conglomeration
|
---|