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