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