source: CLFS/config@ 65eee87

experimental
Last change on this file since 65eee87 was 0170229, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Added base files from George's jhalfs-experimental-2 POC.
WARNING: This code is broken due files renaming.

  • Property mode set to 100644
File size: 2.2 KB
Line 
1#####
2#
3# Configuration file for the CLFS module
4#
5#####
6
7declare -r HTTP=http://ftp.lfs-matrix.net/pub/clfs/conglomeration
8
9#--- Which target architecture,
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="mis-unknown-linux-gnu"
21# ARCH=sparc ; TARGET="sparcv9-unknown-linux-gnu"
22# ARCH=sparcv8 ; TARGET="sparc-unknown-linux-gnu"
23#--------------------------------
24# >>>> 64-64 BUILD <<<<
25 ARCH=x86_64-64 ; TARGET="x86_64-unknown-linux-gnu"
26# ARCH=mips64-64 ; TARGET="mipsel-unknown-linux-gnu"
27# ARCH=mips64-64 ; TARGET="mis-unknown-linux-gnu"
28# ARCH=sparc64-64 ; TARGET="sparc64-unknown-linux-gnu"
29# ARCH=alpha ; TARGET="alpha-unknown-linux-gnu"
30#--------------------------------
31# >>>> MULTILIB 32/64 <<<<
32# ARCH=x86_64 ; TARGET="x86_64-unknown-linux-gnu" ; TARGET32="i686-pc-linux-gnu"
33# ARCH=mips64 ; TARGET="mipsel-unknown-linux-gnu" ; TARGET32="mipsel-unknown-linux-gnu"
34# ARCH=mips64 ; TARGET="mis-unknown-linux-gnu" ; TARGET32="mis-unknown-linux-gnu"
35# ARCH=sparc64 ; TARGET="sparc64-unknown-linux-gnu" ; TARGET32="sparcv9-unknown-linux-gnu"
36
37#--- Create a minimal boot system 0(chroot)/1(bootmin)
38# NOTE: not all combinations are 'bootable' yet.
39BOOTMINIMAL=1
40
41#--- Location of fstab file (if empty, a template is created)
42FSTAB=$BUILDDIR/sources/fstab
43
44#--- Location of kernel config file (if the kernel is to be compiled)
45#--- This file MUST reside in the sources directory
46CONFIG=$BUILDDIR/sources/linux-2.6.15.1-x86_64.config
47
48#--- Book's sources directory
49# If you have previously checked out the book from the repository
50BOOK=
51
52#==== INTERNAL VARIABLES ====
53# Don't edit it unless you know what you are doing
54
55#--- Files that will be copied to $JHALFSDIR
56FILES=""
57
58#--- Default stylesheet
59XSL=dump-clfs-scripts.xsl
60
61#--- Book version
62LFSVRS=development
63MKFILE=$JHALFSDIR/clfs-Makefile
64
65#--- FTP/HTTP mirror used as fallback (full path)
66SERVER=ftp://anduin.linuxfromscratch.org/LFS/conglomeration
Note: See TracBrowser for help on using the repository browser.