source: CLFS/config@ 3ba96f2

experimental
Last change on this file since 3ba96f2 was 3ba96f2, checked in by George Boudreau <georgeb@…>, 18 years ago

remove duplicate variable definitions

  • Property mode set to 100644
File size: 2.3 KB
Line 
1#####
2#
3# Configuration file for the CLFS module
4#
5# $Id$
6#
7#####
8
9#--- Which target architecture you want to build for,
10# used to select proper book and set TARGETS
11#--------------------------------
12TARGET32=""
13TARGET=
14# >>>> 32-32 BUILD <<<<
15 ARCH=x86 ; TARGET="i486-pc-linux-gnu"
16# ARCH=x86 ; TARGET="i586-pc-linux-gnu"
17# ARCH=x86 ; TARGET="i686-pc-linux-gnu"
18# ARCH=ppc ; TARGET="powerpc-unknown-linux-gnu"
19# ARCH=mips ; TARGET="mipsel-unknown-linux-gnu"
20# ARCH=mips ; TARGET="mips-unknown-linux-gnu"
21# ARCH=sparc ; TARGET="sparcv9-unknown-linux-gnu"
22#--------------------------------
23# >>>> 64-64 BUILD <<<<
24# ARCH=x86_64-64 ; TARGET="x86_64-unknown-linux-gnu"
25# ARCH=mips64-64 ; TARGET="mips64el-unknown-linux-gnu"
26# ARCH=mips64-64 ; TARGET="mips64-unknown-linux-gnu"
27# ARCH=sparc64-64 ; TARGET="sparc64-unknown-linux-gnu"
28# ARCH=alpha ; TARGET="alpha-unknown-linux-gnu"
29#--------------------------------
30# >>>> MULTILIB 32/64 <<<<
31# ARCH=x86_64 ; TARGET="x86_64-unknown-linux-gnu" ; TARGET32="i686-pc-linux-gnu"
32# ARCH=mips64 ; TARGET="mips64el-unknown-linux-gnu" ; TARGET32="mipsel-unknown-linux-gnu"
33# ARCH=mips64 ; TARGET="mips64-unknown-linux-gnu" ; TARGET32="mips-unknown-linux-gnu"
34# ARCH=sparc64 ; TARGET="sparc64-unknown-linux-gnu" ; TARGET32="sparc-unknown-linux-gnu"
35# ARCH=ppc64 ; TARGET="powerpc64-unknown-linux-gnu" ; TARGET32="powerpc-unknown-linux-gnu"
36
37#--- What build method should be used chroot/boot
38# NOTE: not all combinations are 'bootable' yet.
39METHOD=chroot
40
41#--- Unprivileged user and group name
42LUSER=clfs
43LGROUP=clfs
44
45#--- Location of fstab file (if empty, a template is created)
46FSTAB=
47
48#--- Fully qualified path to a kernel config file
49# If no config file is specified the kernel is NOT compiled
50CONFIG=
51
52#--- If METHOD=boot, location of boot-kernel config file
53# NOTE: this setting is required
54BOOT_CONFIG=
55
56# Get the kernel package and patches even if no configutation file
57# has been supplied? 0(no)/1(yes)
58GETKERNEL=0
59
60#--- Book's sources directory
61# If you have previously checked out the book from the repository
62BOOK=
63
64#==== INTERNAL VARIABLES ====
65# Don't edit it unless you know what you are doing
66
67#--- Extra files that need be copied to $JHALFSDIR
68FILES=""
69
70#--- Default stylesheet
71XSL=clfs.xsl
72
73#--- Book version
74LFSVRS=development
75TREE=trunk/BOOK
76
77#--- Name of the makefile
78MKFILE=$JHALFSDIR/Makefile
79
Note: See TracBrowser for help on using the repository browser.