[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 |
|
---|
| 10 | #--- Which target architecture,
|
---|
| 11 | # used to select proper book and set TARGETS
|
---|
| 12 | #--------------------------------
|
---|
| 13 | TARGET32=""
|
---|
| 14 | TARGET=
|
---|
| 15 | # >>>> 32-32 BUILD <<<<
|
---|
[12a5707] | 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"
|
---|
| 19 | # ARCH=ppc ; TARGET="powerpc-unknown-linux-gnu"
|
---|
| 20 | # ARCH=mips ; TARGET="mipsel-unknown-linux-gnu"
|
---|
| 21 | # ARCH=mips ; TARGET="mis-unknown-linux-gnu"
|
---|
| 22 | # ARCH=sparc ; TARGET="sparcv9-unknown-linux-gnu"
|
---|
| 23 | # ARCH=sparcv8 ; TARGET="sparc-unknown-linux-gnu"
|
---|
| 24 | #--------------------------------
|
---|
| 25 | # >>>> 64-64 BUILD <<<<
|
---|
[12a5707] | 26 | # ARCH=x86_64-64 ; TARGET="x86_64-unknown-linux-gnu"
|
---|
[0170229] | 27 | # ARCH=mips64-64 ; TARGET="mipsel-unknown-linux-gnu"
|
---|
| 28 | # ARCH=mips64-64 ; TARGET="mis-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="mis-unknown-linux-gnu" ; TARGET32="mis-unknown-linux-gnu"
|
---|
| 36 | # ARCH=sparc64 ; TARGET="sparc64-unknown-linux-gnu" ; TARGET32="sparcv9-unknown-linux-gnu"
|
---|
| 37 |
|
---|
| 38 | #--- Create a minimal boot system 0(chroot)/1(bootmin)
|
---|
| 39 | # NOTE: not all combinations are 'bootable' yet.
|
---|
| 40 | BOOTMINIMAL=1
|
---|
| 41 |
|
---|
| 42 | #--- Location of fstab file (if empty, a template is created)
|
---|
[12a5707] | 43 | FSTAB=
|
---|
[0170229] | 44 |
|
---|
| 45 | #--- Location of kernel config file (if the kernel is to be compiled)
|
---|
| 46 | #--- This file MUST reside in the sources directory
|
---|
[12a5707] | 47 | CONFIG=
|
---|
[0170229] | 48 |
|
---|
| 49 | #--- Book's sources directory
|
---|
| 50 | # If you have previously checked out the book from the repository
|
---|
| 51 | BOOK=
|
---|
| 52 |
|
---|
| 53 | #==== INTERNAL VARIABLES ====
|
---|
| 54 | # Don't edit it unless you know what you are doing
|
---|
| 55 |
|
---|
| 56 | #--- Files that will be copied to $JHALFSDIR
|
---|
| 57 | FILES=""
|
---|
| 58 |
|
---|
| 59 | #--- Default stylesheet
|
---|
[12a5707] | 60 | XSL=clfs.xsl
|
---|
[0170229] | 61 |
|
---|
| 62 | #--- Book version
|
---|
| 63 | LFSVRS=development
|
---|
| 64 | MKFILE=$JHALFSDIR/clfs-Makefile
|
---|
| 65 |
|
---|
| 66 | #--- FTP/HTTP mirror used as fallback (full path)
|
---|
| 67 | SERVER=ftp://anduin.linuxfromscratch.org/LFS/conglomeration
|
---|