2006-08-11 20:02:51 +02:00
|
|
|
menu "--- BOOK Settings"
|
|
|
|
|
|
|
|
#--- BOOK/script
|
|
|
|
choice
|
|
|
|
prompt "Use BOOK"
|
|
|
|
default BOOK_LFS
|
|
|
|
help
|
|
|
|
#-- Select the BOOK/Build style you wish to configure.
|
|
|
|
|
|
|
|
config BOOK_LFS
|
|
|
|
bool "Linux From Scratch"
|
|
|
|
|
|
|
|
config BOOK_CLFS
|
|
|
|
bool "Cross-Compiled Linux From Scratch"
|
|
|
|
|
|
|
|
config BOOK_CLFS2
|
2006-11-19 11:46:31 +01:00
|
|
|
bool "Cross-Compiled Linux From Scratch (Sysroot method)"
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-11-11 01:09:42 +01:00
|
|
|
config BOOK_CLFS3
|
|
|
|
bool "Cross-Compiled Linux From Scratch (Embedded Systems)"
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config BOOK_HLFS
|
|
|
|
bool "Hardened Linux From Scratch"
|
|
|
|
|
2006-08-13 16:38:12 +02:00
|
|
|
config BOOK_BLFS
|
|
|
|
bool "Beyond Linux From Scratch"
|
2006-08-11 20:02:51 +02:00
|
|
|
endchoice
|
|
|
|
|
2006-08-29 20:16:27 +02:00
|
|
|
config PROGNAME
|
|
|
|
string
|
|
|
|
default "lfs" if BOOK_LFS
|
|
|
|
default "clfs" if BOOK_CLFS
|
|
|
|
default "clfs2" if BOOK_CLFS2
|
2006-11-11 01:09:42 +01:00
|
|
|
default "clfs3" if BOOK_CLFS3
|
2006-08-29 20:16:27 +02:00
|
|
|
default "hlfs" if BOOK_HLFS
|
|
|
|
default "blfs" if BOOK_BLFS
|
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
config RUN_ME
|
|
|
|
string
|
2006-08-29 20:16:27 +02:00
|
|
|
default "./jhalfs run" if !BOOK_BLFS
|
|
|
|
default "./blfs-tool" if BOOK_BLFS
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- End BOOK/script
|
|
|
|
|
|
|
|
#--- Book version
|
|
|
|
choice
|
|
|
|
prompt "Release"
|
|
|
|
default relSVN
|
|
|
|
config relSVN
|
|
|
|
bool "SVN"
|
|
|
|
help
|
|
|
|
#-- Current development version as in trunk
|
|
|
|
|
|
|
|
config WORKING_COPY
|
|
|
|
bool "Working Copy"
|
2006-08-13 16:38:12 +02:00
|
|
|
depends on !BOOK_BLFS
|
2006-08-11 20:02:51 +02:00
|
|
|
help
|
|
|
|
#-- A local working copy
|
|
|
|
|
|
|
|
config BRANCH
|
2006-11-14 20:58:26 +01:00
|
|
|
bool "Branch or stable book" if !BOOK_CLFS2 && !BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
help
|
|
|
|
#-- A supported SVN branch or stable released book
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BRANCH_ID
|
2006-08-16 19:42:54 +02:00
|
|
|
string "Book Version (mandatory)"
|
2006-08-11 20:02:51 +02:00
|
|
|
default "**EDIT ME**"
|
|
|
|
depends BRANCH
|
|
|
|
help
|
|
|
|
#-- A list of valid branches and stable books ID's is available here.
|
|
|
|
# http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
|
|
|
|
|
|
|
|
config BOOK
|
|
|
|
string "Loc of working copy (mandatory)"
|
|
|
|
default "**EDIT ME**"
|
|
|
|
depends WORKING_COPY
|
|
|
|
help
|
|
|
|
#-- The full path to a local copy of the book XML sources
|
|
|
|
#
|
|
|
|
#--- End BOOK version
|
|
|
|
|
|
|
|
#--- CLFS specific params
|
|
|
|
choice
|
|
|
|
prompt "Target architecture"
|
|
|
|
default ARCH_X86
|
2006-11-11 01:09:42 +01:00
|
|
|
depends BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
help
|
2006-12-09 21:12:06 +01:00
|
|
|
#-- Choose the target system base architecture
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config ARCH_X86
|
|
|
|
bool "x86"
|
|
|
|
|
|
|
|
config ARCH_MIPS
|
2006-11-14 21:52:36 +01:00
|
|
|
bool "mips" if !BOOK_CLFS2
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config ARCH_PPC
|
2006-12-09 14:17:30 +01:00
|
|
|
bool "ppc" if BOOK_CLFS
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config ARCH_SPARC
|
2006-12-09 14:17:30 +01:00
|
|
|
bool "sparc" if BOOK_CLFS
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config ARCH_ALPHA
|
2007-02-20 19:35:59 +01:00
|
|
|
bool "alpha" if !BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config ARCH_ARM
|
2007-03-05 19:37:03 +01:00
|
|
|
bool "arm" if !BOOK_CLFS
|
2006-12-09 14:17:30 +01:00
|
|
|
|
|
|
|
config ARCH_HPPA
|
|
|
|
bool "hppa" if BOOK_CLFS2
|
2006-08-11 20:02:51 +02:00
|
|
|
endchoice
|
|
|
|
|
2007-02-15 20:15:05 +01:00
|
|
|
choice
|
|
|
|
prompt "Hardware Platform"
|
|
|
|
depends BOOK_CLFS3 && ARCH_MIPS
|
|
|
|
default PLATFORM_GENERIC
|
|
|
|
help
|
|
|
|
# Chose a destination platform
|
|
|
|
# Platform specific files will be included
|
|
|
|
|
|
|
|
config PLATFORM_GENERIC
|
|
|
|
bool "Generic platform"
|
2007-02-20 19:35:59 +01:00
|
|
|
|
2007-02-15 20:15:05 +01:00
|
|
|
config PLATFORM_WRT
|
|
|
|
bool "WRT - MIPS based wireless router" if ARCH_MIPS
|
|
|
|
endchoice
|
2007-02-20 19:35:59 +01:00
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
choice
|
|
|
|
prompt "Library"
|
2006-12-09 17:37:42 +01:00
|
|
|
depends (BOOK_CLFS && !ARCH_ALPHA) || (BOOK_CLFS3 && ARCH_MIPS)
|
|
|
|
default DATA_32
|
2006-12-09 21:12:06 +01:00
|
|
|
help
|
|
|
|
#-- Choose the target system libraries type
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config DATA_32
|
2006-12-09 17:37:42 +01:00
|
|
|
bool "32-bit"
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config DATA_64
|
2006-12-09 17:37:42 +01:00
|
|
|
bool "64-bit" if !ARCH_PPC
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config DATA_MULTI
|
2007-02-15 20:15:05 +01:00
|
|
|
bool "multilib" if !(BOOK_CLFS3 && ARCH_MIPS )
|
2006-08-11 20:02:51 +02:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
choice
|
2006-12-09 14:17:30 +01:00
|
|
|
prompt "Processor type"
|
2007-07-28 17:40:53 +02:00
|
|
|
depends (BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3) && ((ARCH_X86 && !(DATA_64 || DATA_MULTI)) || ARCH_MIPS || ARCH_HPPA || ARCH_ALPHA || (ARCH_SPARC && (DATA_64 || DATA_MULTI)) || (ARCH_ARM && BOOK_CLFS3))
|
2006-12-09 21:12:06 +01:00
|
|
|
help
|
|
|
|
#-- Choose the target system processor
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config PROC_i486
|
2006-12-09 17:37:42 +01:00
|
|
|
bool "486 Compatibles" if ARCH_X86
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config PROC_i586
|
2006-12-09 17:37:42 +01:00
|
|
|
bool "Pentium, K6, 586 Compatibles" if ARCH_X86
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config PROC_i686
|
2006-12-09 17:37:42 +01:00
|
|
|
bool "Pentium II, Pentium III, Pentium 4, Athlon, Duron" if ARCH_X86
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config PROC_mipsel
|
2006-12-09 14:17:30 +01:00
|
|
|
bool "MIPS Little Endian" if ARCH_MIPS
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config PROC_mips
|
2006-12-09 14:17:30 +01:00
|
|
|
bool "MIPS Big Endian" if ARCH_MIPS
|
|
|
|
|
|
|
|
config PROC_unknown
|
2007-02-24 13:51:55 +01:00
|
|
|
bool "Unknown" if ARCH_HPPA || ARCH_ALPHA
|
2006-12-09 14:17:30 +01:00
|
|
|
|
|
|
|
config PROC_hppa1
|
|
|
|
bool "PA 7000 Series" if ARCH_HPPA
|
|
|
|
|
|
|
|
config PROC_hppa2
|
|
|
|
bool "PA 8000 Series" if ARCH_HPPA
|
2007-02-24 13:51:55 +01:00
|
|
|
|
|
|
|
config PROC_EV5
|
|
|
|
bool "EV5 Series" if ARCH_ALPHA
|
|
|
|
|
|
|
|
config PROC_EV56
|
|
|
|
bool "EV56 Series" if ARCH_ALPHA
|
|
|
|
|
|
|
|
config PROC_PCA56
|
|
|
|
bool "PCA56 Series" if ARCH_ALPHA
|
|
|
|
|
|
|
|
config PROC_PCA57
|
|
|
|
bool "PCA57 Series" if ARCH_ALPHA
|
|
|
|
|
|
|
|
config PROC_EV6
|
|
|
|
bool "EV6 Series" if ARCH_ALPHA
|
|
|
|
|
|
|
|
config PROC_EV67
|
|
|
|
bool "EV67 Series" if ARCH_ALPHA
|
|
|
|
|
|
|
|
config PROC_EV68
|
|
|
|
bool "EV68 Series" if ARCH_ALPHA
|
2007-03-05 19:37:03 +01:00
|
|
|
|
|
|
|
config PROC_ARM
|
|
|
|
bool "Generic arm, little endian" if ARCH_ARM
|
|
|
|
|
|
|
|
config PROC_ARM5L
|
|
|
|
bool "Generic arm, version 5, little endian" if ARCH_ARM
|
|
|
|
|
|
|
|
config PROC_ARM5B
|
|
|
|
bool "Generic arm, version 5, big endian" if ARCH_ARM
|
2007-07-28 17:40:53 +02:00
|
|
|
|
|
|
|
config PROC_ULTRA1
|
|
|
|
bool "UtraSparc" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
|
|
|
|
|
|
|
|
config PROC_ULTRA2
|
|
|
|
bool "UtraSparc2" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
|
|
|
|
|
|
|
|
config PROC_ULTRA3
|
|
|
|
bool "UtraSparc3" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
|
2006-08-11 20:02:51 +02:00
|
|
|
endchoice
|
|
|
|
|
2006-12-09 21:12:06 +01:00
|
|
|
choice
|
|
|
|
prompt "MIPS 64 ABI"
|
|
|
|
depends BOOK_CLFS3 && ARCH_MIPS && DATA_64
|
|
|
|
default ABI_64
|
|
|
|
help
|
|
|
|
#-- Choose the target system ABI to use
|
|
|
|
|
|
|
|
config ABI_32
|
|
|
|
bool "o32"
|
|
|
|
|
|
|
|
config ABI_N32
|
|
|
|
bool "n32"
|
|
|
|
|
|
|
|
config ABI_64
|
|
|
|
bool "n64"
|
|
|
|
endchoice
|
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
config TARGET
|
|
|
|
string
|
2006-12-09 17:37:42 +01:00
|
|
|
default "i486-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i486
|
|
|
|
default "i586-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i586
|
|
|
|
default "i686-pc-linux-gnu" if !BOOK_CLFS3 && PROC_i686
|
2006-11-14 21:52:36 +01:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "i486-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i486
|
|
|
|
default "i586-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i586
|
|
|
|
default "i686-pc-linux-uclibc" if BOOK_CLFS3 && PROC_i686
|
2006-11-11 01:09:42 +01:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "x86_64-unknown-linux-gnu" if ARCH_X86 && (DATA_64 || DATA_MULTI)
|
2006-11-11 01:09:42 +01:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "mipsel-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mipsel && DATA_32
|
|
|
|
default "mips-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mips && DATA_32
|
|
|
|
default "mips64el-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mipsel && (DATA_64 || DATA_MULTI)
|
|
|
|
default "mips64-unknown-linux-gnu" if !BOOK_CLFS3 && PROC_mips && (DATA_64 || DATA_MULTI)
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "mipsel-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mipsel && DATA_32
|
2007-07-03 23:11:32 +02:00
|
|
|
default "mips-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_32
|
2006-12-09 17:37:42 +01:00
|
|
|
default "mips64el-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mipsel && DATA_64
|
|
|
|
default "mips64-unknown-linux-uclibc" if BOOK_CLFS3 && PROC_mips && DATA_64
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "powerpc-unknown-linux-gnu" if ARCH_PPC && DATA_32
|
|
|
|
default "powerpc64-unknown-linux-gnu" if ARCH_PPC && DATA_MULTI
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "sparc-unknown-linux-gnu" if ARCH_SPARC && DATA_32
|
|
|
|
default "sparc64-unknown-linux-gnu" if ARCH_SPARC && (DATA_64 || DATA_MULTI)
|
2006-12-09 14:17:30 +01:00
|
|
|
|
2007-02-24 13:51:55 +01:00
|
|
|
default "hppa-unknown-linux-gnu" if PROC_unknown && ARCH_HPPA
|
2006-12-09 17:37:42 +01:00
|
|
|
default "hppa1.1-unknown-linux-gnu" if PROC_hppa1
|
|
|
|
default "hppa2.0-unknown-linux-gnu" if PROC_hppa2
|
|
|
|
|
2007-03-05 19:37:03 +01:00
|
|
|
default "arm-unknown-linux-gnu" if ARCH_ARM && BOOK_CLFS2
|
|
|
|
|
|
|
|
default "arm-unknown-linux-uclibc" if PROC_ARM
|
|
|
|
default "armv5l-unknown-linux-uclibc" if PROC_ARM5L
|
|
|
|
default "armv5b-unknown-linux-uclibc" if PROC_ARM5B
|
2007-02-24 13:51:55 +01:00
|
|
|
|
|
|
|
default "alpha-unknown-linux-gnu" if PROC_unknown && ARCH_ALPHA
|
|
|
|
default "alphaev5-unknown-linux-gnu" if PROC_EV5
|
|
|
|
default "alphaev56-unknown-linux-gnu" if PROC_EV56
|
|
|
|
default "alphapca56-unknown-linux-gnu" if PROC_PCA56
|
|
|
|
default "alphapca57-unknown-linux-gnu" if PROC_PCA57
|
|
|
|
default "alphaev6-unknown-linux-gnu" if PROC_EV6
|
|
|
|
default "alphaev67-unknown-linux-gnu" if PROC_EV67
|
|
|
|
default "alphaev68-unknown-linux-gnu" if PROC_EV68
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config TARGET32
|
|
|
|
string
|
|
|
|
depends DATA_MULTI
|
|
|
|
default "i686-pc-linux-gnu" if ARCH_X86
|
2006-12-09 17:37:42 +01:00
|
|
|
default "mipsel-unknown-linux-gnu" if PROC_mipsel
|
|
|
|
default "mips-unknown-linux-gnu" if PROC_mips
|
2006-08-11 20:02:51 +02:00
|
|
|
default "sparc-unknown-linux-gnu" if ARCH_SPARC
|
|
|
|
default "powerpc-unknown-linux-gnu" if ARCH_PPC
|
|
|
|
|
2007-02-15 20:15:05 +01:00
|
|
|
config PLATFORM
|
|
|
|
string
|
2007-07-28 17:40:53 +02:00
|
|
|
default "GENERIC" if (!BOOK_CLFS3) || PLATFORM_GENERIC
|
|
|
|
default "WRT - Wireless Router" if PLATFORM_WRT
|
|
|
|
|
|
|
|
config SPARC64_PROC
|
|
|
|
string
|
|
|
|
default "none" if !(ARCH_SPARC && (DATA_64 || DATA_MULTI))
|
|
|
|
default "1" if PROC_ULTRA1
|
|
|
|
default "2" if PROC_ULTRA2
|
|
|
|
default "3" if PROC_ULTRA3
|
2007-02-15 20:15:05 +01:00
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
config ARCH
|
|
|
|
string
|
2006-12-09 17:37:42 +01:00
|
|
|
default "x86" if ARCH_X86 && (DATA_32 || BOOK_CLFS2 || BOOK_CLFS3)
|
|
|
|
default "x86_64" if ARCH_X86 && DATA_MULTI
|
|
|
|
default "x86_64-64" if ARCH_X86 && DATA_64
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2007-02-15 20:15:05 +01:00
|
|
|
default "wrt" if PLATFORM_WRT && BOOK_CLFS3
|
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "mips" if ARCH_MIPS && (DATA_32 || BOOK_CLFS3)
|
|
|
|
default "mips64" if ARCH_MIPS && DATA_MULTI
|
|
|
|
default "mips64-64" if ARCH_MIPS && DATA_64 && BOOK_CLFS
|
2006-11-14 21:52:36 +01:00
|
|
|
|
2007-02-15 20:15:05 +01:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "ppc" if ARCH_PPC && DATA_32
|
|
|
|
default "ppc64" if ARCH_PPC && DATA_MULTI
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-12-09 17:37:42 +01:00
|
|
|
default "sparc" if ARCH_SPARC && DATA_32
|
|
|
|
default "sparc64" if ARCH_SPARC && DATA_MULTI
|
|
|
|
default "sparc64-64" if ARCH_SPARC && DATA_64
|
|
|
|
|
|
|
|
default "alpha" if ARCH_ALPHA
|
|
|
|
default "arm" if ARCH_ARM
|
|
|
|
default "hppa" if ARCH_HPPA
|
2007-02-20 19:35:59 +01:00
|
|
|
|
2006-11-14 21:52:36 +01:00
|
|
|
config MIPS_LEVEL
|
|
|
|
string
|
|
|
|
depends BOOK_CLFS3 && ARCH_MIPS
|
|
|
|
default "1" if DATA_32
|
|
|
|
default "3" if DATA_64
|
|
|
|
|
2006-11-28 05:18:33 +01:00
|
|
|
config ABI
|
|
|
|
string
|
|
|
|
depends BOOK_CLFS3
|
2007-07-02 20:00:57 +02:00
|
|
|
default "-m32" if ARCH_X86 || ARCH_ARM
|
2006-12-09 21:12:06 +01:00
|
|
|
# default "-m64" if NO USED YET IN THE BOOK
|
|
|
|
default "-mabi=32" if ABI_32 || (ARCH_MIPS && DATA_32)
|
|
|
|
default "-mabi=n32" if ABI_N32
|
|
|
|
default "-mabi=64" if ABI_64
|
2006-12-09 14:17:30 +01:00
|
|
|
|
2007-07-24 21:22:46 +02:00
|
|
|
config ENDIAN
|
|
|
|
string
|
|
|
|
depends BOOK_CLFS3 && (ARCH_MIPS || ARCH_ARM)
|
|
|
|
default "little" if PROC_mipsel || PROC_ARM || PROC_ARM5L
|
|
|
|
default "big" if PROC_mips || PROC_ARM5B
|
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
choice
|
|
|
|
prompt "Build method"
|
|
|
|
depends BOOK_CLFS
|
|
|
|
help
|
|
|
|
#-- What build method should be used: a chroot jail or minimal boot system
|
|
|
|
# Review the Cross-LFS book chap6 "TO BOOT OR CHROOT" for a full explanation.
|
|
|
|
|
|
|
|
config BUILD_CHROOT
|
|
|
|
bool "chroot"
|
|
|
|
|
|
|
|
config BUILD_BOOT
|
|
|
|
bool "boot"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config METHOD
|
|
|
|
string
|
|
|
|
default "chroot" if BUILD_CHROOT
|
|
|
|
default "boot" if BUILD_BOOT
|
|
|
|
|
|
|
|
config BOOT_CONFIG
|
|
|
|
string "BOOT kernel config file (mandatory)"
|
|
|
|
default "***EDIT ME***"
|
|
|
|
depends on BUILD_BOOT
|
|
|
|
help
|
|
|
|
#-- If METHOD=boot, location of boot-kernel config file
|
|
|
|
# The config file will be copied to ${BUILD_DIR}/sources
|
|
|
|
# and renamed 'bootkernel-config'
|
|
|
|
#
|
|
|
|
# NOTE: this setting is required
|
|
|
|
#--- End CLFS specific params
|
|
|
|
|
|
|
|
#--- HLFS specific params
|
2006-08-16 19:42:54 +02:00
|
|
|
config GRSECURITY_HOST
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Building on grsecurity enabled host?"
|
|
|
|
default n
|
|
|
|
depends on BOOK_HLFS
|
|
|
|
help
|
|
|
|
#-- If your build system has grsecurity patches applied
|
|
|
|
# you MUST enable this switch.
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Library"
|
|
|
|
depends on BOOK_HLFS
|
|
|
|
help
|
|
|
|
#-- Which library model to use: uClibc/glibc
|
|
|
|
|
|
|
|
config LIB_GLIBC
|
|
|
|
bool "glibc"
|
|
|
|
|
|
|
|
config LIB_UCLIBC
|
|
|
|
bool "uClibc"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config MODEL
|
|
|
|
depends on BOOK_HLFS
|
|
|
|
string
|
|
|
|
default "glibc" if LIB_GLIBC
|
|
|
|
default "uclibc" if LIB_UCLIBC
|
2007-06-03 12:27:05 +02:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Kernel series"
|
|
|
|
depends on BOOK_HLFS
|
|
|
|
help
|
|
|
|
#-- Which kernel series to use: 2.6/2.4
|
|
|
|
|
|
|
|
config KERNEL_26
|
|
|
|
bool "2.6 kernel series"
|
|
|
|
|
|
|
|
config KERNEL_24
|
|
|
|
bool "2.4 kernel series"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config KERNEL
|
|
|
|
depends on BOOK_HLFS
|
|
|
|
string
|
|
|
|
default "2.6" if KERNEL_26
|
|
|
|
default "2.4" if KERNEL_24
|
2007-06-04 21:36:27 +02:00
|
|
|
|
2007-06-18 21:52:52 +02:00
|
|
|
# menu "HLFS Additional Features"
|
|
|
|
# depends on BOOK_HLFS
|
|
|
|
#
|
|
|
|
# config SET_SSP
|
|
|
|
# bool "Stack-smashing protector"
|
|
|
|
# default y
|
|
|
|
#
|
|
|
|
# config SET_ASLR
|
|
|
|
# bool "Address-space layout randomization"
|
|
|
|
# default y
|
|
|
|
#
|
|
|
|
# config SET_PAX
|
|
|
|
# bool "PaX-aware ELF executables and kernel"
|
|
|
|
# default y
|
|
|
|
#
|
|
|
|
# config SET_HARDENED_TMP
|
|
|
|
# bool "Hardened temporary files creation"
|
|
|
|
# default y
|
|
|
|
#
|
|
|
|
# config SET_WARNINGS
|
|
|
|
# bool "Additional warnings"
|
|
|
|
# default y
|
|
|
|
#
|
|
|
|
# config SET_MISC
|
|
|
|
# bool "Miscellaneous features"
|
|
|
|
# default y
|
|
|
|
#
|
|
|
|
# config SET_BLOWFISH
|
|
|
|
# bool "Blowfish passwords"
|
|
|
|
# default y
|
|
|
|
# endmenu
|
2007-06-04 21:36:27 +02:00
|
|
|
|
|
|
|
config SSP
|
2007-06-20 22:37:14 +02:00
|
|
|
# depends on SET_SSP
|
2007-06-04 21:36:27 +02:00
|
|
|
string
|
|
|
|
default ",ssp,"
|
|
|
|
|
|
|
|
config ASLR
|
2007-06-20 22:37:14 +02:00
|
|
|
# depends on SET_ASLR
|
2007-06-04 21:36:27 +02:00
|
|
|
string
|
|
|
|
default ",aslr,"
|
|
|
|
|
|
|
|
config PAX
|
2007-06-20 22:37:14 +02:00
|
|
|
# depends on SET_PAX
|
2007-06-04 21:36:27 +02:00
|
|
|
string
|
|
|
|
default ",pax,"
|
|
|
|
|
|
|
|
config HARDENED_TMP
|
2007-06-20 22:37:14 +02:00
|
|
|
# depends on SET_HARDENED_TMP
|
2007-06-04 21:36:27 +02:00
|
|
|
string
|
|
|
|
default ",hardened_tmp,"
|
|
|
|
|
|
|
|
config WARNINGS
|
2007-06-20 22:37:14 +02:00
|
|
|
# depends on SET_WARNINGS
|
2007-06-04 21:36:27 +02:00
|
|
|
string
|
|
|
|
default ",warnings,"
|
|
|
|
|
|
|
|
config MISC
|
2007-06-20 22:37:14 +02:00
|
|
|
# depends on SET_MISC
|
2007-06-04 21:36:27 +02:00
|
|
|
string
|
|
|
|
default ",misc,"
|
|
|
|
|
|
|
|
config BLOWFISH
|
2007-06-20 22:37:14 +02:00
|
|
|
# depends on SET_BLOWFISH
|
2007-06-04 21:36:27 +02:00
|
|
|
string
|
|
|
|
default ",blowfish,"
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- End HLFS specific params
|
|
|
|
|
2006-10-16 20:17:01 +02:00
|
|
|
#--- Custom Tools support
|
|
|
|
config CUSTOM_TOOLS
|
2006-12-15 11:53:10 +01:00
|
|
|
bool "Add custom tools support"
|
2006-10-16 20:17:01 +02:00
|
|
|
default n
|
2006-12-15 11:53:10 +01:00
|
|
|
depends on !BOOK_BLFS
|
2006-10-16 20:17:01 +02:00
|
|
|
help
|
|
|
|
#--- Activating this option additional packages you create
|
2006-12-15 11:53:10 +01:00
|
|
|
# will be installed after finished the xLFS system build.
|
2006-10-16 20:17:01 +02:00
|
|
|
#
|
|
|
|
#--- End Custom Tools support
|
|
|
|
|
2006-08-29 20:18:06 +02:00
|
|
|
#--- blfs-tool Support
|
|
|
|
config BLFS_TOOL
|
|
|
|
bool "Add blfs-tool support"
|
|
|
|
default n
|
2006-12-11 19:21:16 +01:00
|
|
|
depends on !BOOK_BLFS && !BOOK_CLFS3
|
2006-08-29 20:18:06 +02:00
|
|
|
help
|
2007-07-28 19:12:00 +02:00
|
|
|
#--- Activating this option will install additional
|
2007-07-28 21:14:34 +02:00
|
|
|
# packages needed to use blfs-tool when booting
|
2007-07-28 19:12:00 +02:00
|
|
|
# the new system.
|
2006-08-29 20:18:06 +02:00
|
|
|
#
|
|
|
|
# The blfs-tool files will be installed under
|
|
|
|
# $BUILD_DIR/blfs_root.
|
|
|
|
|
|
|
|
# After booting the new xLFS system you should to
|
2006-12-11 19:21:16 +01:00
|
|
|
# create an user account and move the /blfs-root
|
2006-08-29 20:18:06 +02:00
|
|
|
# directory to the user's home, making he the
|
|
|
|
# directory and files owner, before start
|
|
|
|
# using blfs-tool.
|
|
|
|
#
|
2006-10-06 20:48:06 +02:00
|
|
|
# Also, be sure to bring to that user read and write
|
|
|
|
# privileges over the $TRACKING_DIR directory and
|
|
|
|
# the files that it contains.
|
2006-08-29 20:18:06 +02:00
|
|
|
#
|
|
|
|
# And don't forget to configure sudo properly.
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "BLFS Release"
|
|
|
|
default BLFS_SVN
|
|
|
|
depends on BLFS_TOOL
|
|
|
|
config BLFS_SVN
|
|
|
|
bool "BLFS SVN"
|
|
|
|
help
|
|
|
|
#-- Current development version as in trunk
|
|
|
|
|
|
|
|
config BLFS_BRANCH
|
|
|
|
bool "BLFS Branch or stable book"
|
|
|
|
help
|
|
|
|
#-- A supported SVN branch or stable released book
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BLFS_BRANCH_ID
|
|
|
|
string "BLFS Book Version (mandatory)"
|
|
|
|
default "**EDIT ME**"
|
|
|
|
depends on BLFS_BRANCH
|
|
|
|
help
|
|
|
|
#-- A list of valid branches and stable books ID's is available here.
|
|
|
|
# http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
|
|
|
|
|
|
|
|
menu "blfs-tool dependencies"
|
|
|
|
depends on BLFS_TOOL
|
|
|
|
|
|
|
|
config DEP_LIBXML
|
|
|
|
bool "libxml2 (required)"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DEP_LIBXSLT
|
|
|
|
bool "libxslt (required)"
|
|
|
|
default y
|
|
|
|
|
2006-10-02 21:32:06 +02:00
|
|
|
config DEP_TIDY
|
|
|
|
bool "tidy (required)"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DEP_DBXML
|
|
|
|
bool "DocBook XML DTD (required)"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DEP_UNZIP
|
|
|
|
bool "UnZip (required to install DocBook XML DTD)"
|
|
|
|
default y
|
|
|
|
depends on DEP_DBXML
|
|
|
|
|
2007-07-24 23:04:34 +02:00
|
|
|
#config DEP_DBXSL
|
|
|
|
#bool "DocBook XSL (required)"
|
|
|
|
#default y
|
2006-08-29 20:18:06 +02:00
|
|
|
|
2007-08-08 19:24:58 +02:00
|
|
|
config DEP_LYNX
|
|
|
|
bool "lynx (required)"
|
2006-08-29 20:18:06 +02:00
|
|
|
default y
|
|
|
|
|
|
|
|
config DEP_SUDO
|
|
|
|
bool "sudo (recommended)"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DEP_WGET
|
|
|
|
bool "wget (recommended)"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DEP_GPM
|
|
|
|
bool "GPM (optional, see help)"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
#-- You MUST to install manually the gpm bootscript
|
2007-07-28 19:12:00 +02:00
|
|
|
# and create its configuration file.
|
|
|
|
#
|
|
|
|
# An alternative is to unselect this option and
|
2007-07-28 21:14:34 +02:00
|
|
|
# install gpm, its configuration file, and its
|
2007-07-28 19:12:00 +02:00
|
|
|
# bootscript using the custom tools support.
|
|
|
|
|
|
|
|
config DEP_SVN
|
|
|
|
bool "SVN client (optional, see help)"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Subversion-1.3.1 will be installed. This version is
|
2007-07-28 21:14:34 +02:00
|
|
|
# old but does not rely on additional packages to be
|
|
|
|
# built.
|
2007-07-28 19:12:00 +02:00
|
|
|
#
|
|
|
|
# If you are happy with this old version and don't
|
|
|
|
# need extra features, select this option.
|
2006-08-29 20:18:06 +02:00
|
|
|
endmenu
|
|
|
|
#--- End blfs-tool Support
|
|
|
|
|
2006-08-13 16:38:12 +02:00
|
|
|
#--- BLFS specific params
|
|
|
|
config BLFS_ROOT
|
|
|
|
string "Directory root"
|
2006-08-29 20:18:06 +02:00
|
|
|
default "$HOME/blfs_root" if BOOK_BLFS
|
|
|
|
default "/blfs_root" if BLFS_TOOL
|
|
|
|
depends on BOOK_BLFS || BLFS_TOOL
|
2006-08-13 16:38:12 +02:00
|
|
|
help
|
|
|
|
#-- Full path to the directory where all required
|
|
|
|
# files and scripts will be stored.
|
|
|
|
|
|
|
|
config BLFS_XML
|
|
|
|
string "BLFS sources directory"
|
|
|
|
default "blfs-xml"
|
2006-08-29 20:18:06 +02:00
|
|
|
depends on BOOK_BLFS || BLFS_TOOL
|
2006-08-13 16:38:12 +02:00
|
|
|
help
|
2006-08-29 20:18:06 +02:00
|
|
|
#-- The directory name under $BLFS_ROOT where BLFS book
|
|
|
|
# sources will be checkout.
|
2006-08-24 22:38:22 +02:00
|
|
|
|
|
|
|
config TRACKING_DIR
|
|
|
|
string "Installed packages database directory"
|
|
|
|
default "/var/lib/jhalfs/BLFS"
|
2006-10-16 20:17:01 +02:00
|
|
|
depends on BOOK_BLFS || BLFS_TOOL || CUSTOM_TOOLS
|
2006-08-24 22:38:22 +02:00
|
|
|
help
|
|
|
|
#-- Full path to the directory where the installed
|
|
|
|
# packages database will be created.
|
|
|
|
#
|
2006-10-16 20:17:01 +02:00
|
|
|
# If you are installing blfs-tool on a running xLFS system
|
|
|
|
# you MUST to create manually this directory.
|
|
|
|
#
|
|
|
|
# If you are installing blfs-tool as part of a xLFS build
|
|
|
|
# and/or using the customized scripts feature, you will
|
|
|
|
# need to fix that directory permissions after booting
|
|
|
|
# the new system.
|
2006-08-29 20:18:06 +02:00
|
|
|
#
|
2006-08-24 22:38:22 +02:00
|
|
|
# Note that the user that will build the packages must
|
|
|
|
# have read and write privileges on that directory.
|
2006-08-13 16:38:12 +02:00
|
|
|
#--- End BLFS specific params
|
2006-10-16 20:17:01 +02:00
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- End BOOK Settings
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
menu "--- General Settings"
|
2006-08-13 16:38:12 +02:00
|
|
|
depends on !BOOK_BLFS
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
#--- Set User Account
|
|
|
|
config CONFIG_USER
|
2007-04-13 22:40:38 +02:00
|
|
|
bool "Change the default user/group and homedir for this build"
|
2006-08-11 20:02:51 +02:00
|
|
|
default n
|
|
|
|
help #-- Unprivileged user and group name
|
|
|
|
# If you do not have the priv to create/delete
|
|
|
|
# users and groups you can specifiy your own
|
|
|
|
# user id for the build
|
|
|
|
#
|
|
|
|
# default values for each book
|
2007-04-13 22:40:38 +02:00
|
|
|
# LFS lfs
|
|
|
|
# CLFS* clfs
|
|
|
|
# HLFS hlfs
|
|
|
|
#
|
|
|
|
# Also, if your host place users home dirs into a
|
|
|
|
# directory other than /home you can specify it here.
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config DEF_USER
|
|
|
|
string
|
|
|
|
default "lfs" if BOOK_LFS
|
2006-11-11 01:09:42 +01:00
|
|
|
default "clfs" if BOOK_CLFS || BOOK_CLFS2 || BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
default "hlfs" if BOOK_HLFS
|
|
|
|
|
|
|
|
config SET_USER
|
|
|
|
string "User account"
|
|
|
|
depends CONFIG_USER
|
|
|
|
default DEF_USER
|
|
|
|
|
|
|
|
config CONFIG_GROUP
|
|
|
|
bool "Set Group?"
|
|
|
|
default n
|
|
|
|
depends CONFIG_USER
|
|
|
|
|
|
|
|
config SET_GROUP
|
|
|
|
string "GROUP account"
|
|
|
|
depends CONFIG_GROUP
|
|
|
|
default DEF_USER
|
|
|
|
|
2007-04-13 22:40:38 +02:00
|
|
|
config CONFIG_HOME
|
|
|
|
bool "Set home dir?"
|
|
|
|
default n
|
|
|
|
depends CONFIG_USER
|
|
|
|
|
|
|
|
config SET_HOME
|
|
|
|
string "Path to the directory where user home dir will be created"
|
|
|
|
depends CONFIG_HOME
|
|
|
|
default "/home"
|
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
config LUSER
|
|
|
|
string
|
|
|
|
default DEF_USER if !CONFIG_USER
|
|
|
|
default SET_USER if CONFIG_USER
|
|
|
|
|
|
|
|
config LGROUP
|
|
|
|
string
|
|
|
|
default LUSER if !CONFIG_GROUP
|
|
|
|
default SET_GROUP if CONFIG_GROUP
|
2007-04-13 22:40:38 +02:00
|
|
|
|
|
|
|
config LHOME
|
|
|
|
string
|
|
|
|
default "/home" if !CONFIG_HOME
|
|
|
|
default SET_HOME if CONFIG_HOME
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- End Set User Account
|
|
|
|
|
|
|
|
config BUILDDIR
|
|
|
|
string "Build Directory"
|
|
|
|
default "/mnt/build_dir"
|
|
|
|
help
|
|
|
|
#-- The directory where the created system will be located.
|
2007-09-14 18:56:24 +02:00
|
|
|
# NOTE: A working directory named jhalfs will be created
|
|
|
|
# here, so ensure this does not conflict with the jhalfs
|
|
|
|
# source directory.
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config GETPKG
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Retrieve source files"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Download all packages and patches required by the book selected
|
|
|
|
# NOTE: Looks for files in the local archive defined by SRC_ARCHIVE
|
|
|
|
# first and if necessary retrieve them from the 'net.
|
|
|
|
# Files will be transfered to $BUILDDIR/sources.
|
|
|
|
|
|
|
|
config SRC_ARCHIVE
|
|
|
|
string "Package Archive Directory"
|
|
|
|
default "$SRC_ARCHIVE"
|
2006-08-16 19:42:54 +02:00
|
|
|
depends GETPKG
|
2006-08-11 20:02:51 +02:00
|
|
|
help
|
|
|
|
#-- A local archive for packages/file (not $BUILDDIR/sources)
|
|
|
|
# Used only if GETPKG = 1
|
|
|
|
# Any missing file will be downloaded and archived here,
|
|
|
|
# if the user has the right priviledges.
|
|
|
|
|
2006-08-29 20:16:27 +02:00
|
|
|
config SERVER
|
|
|
|
string "FTP mirror"
|
|
|
|
default "ftp://ftp.lfs-matrix.net"
|
|
|
|
depends GETPKG
|
|
|
|
help
|
|
|
|
#-- FTP mirror to download packages and patches if not found
|
|
|
|
# in $SRC_ARCHIVE
|
|
|
|
# As a last resort, the files will dowloaded from upstream,
|
|
|
|
# if possible.
|
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config GETKERNEL
|
2006-10-05 21:29:41 +02:00
|
|
|
bool "Always retrieve kernel package (see help)"
|
2007-02-23 23:40:04 +01:00
|
|
|
default y if BOOK_LFS || BOOK_HLFS
|
2006-08-16 19:42:54 +02:00
|
|
|
depends GETPKG
|
2006-08-11 20:02:51 +02:00
|
|
|
help
|
2006-10-05 21:29:41 +02:00
|
|
|
#-- Get the kernel package and patches even if no kernel
|
|
|
|
# configuration file has been supplied.
|
|
|
|
|
|
|
|
# NOTE:
|
|
|
|
# The kernel package must be available when building
|
2007-02-23 23:40:04 +01:00
|
|
|
# the SVN version of LFS or HLFS to can install the
|
|
|
|
# headers files.
|
|
|
|
#
|
|
|
|
# If building LFS-6.2 this setting can be disabled.
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config RUNMAKE
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Run the makefile"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Automatically run the makefile once it has been created
|
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config CLEAN
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Rebuild files"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Clean the build directory before performing any other task.
|
|
|
|
# The directory is cleaned only if it was populated by a
|
|
|
|
# previous JHALFS run.
|
|
|
|
#
|
|
|
|
|
|
|
|
#--- End General Settings
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
menu "--- Build Settings"
|
2006-08-13 16:38:12 +02:00
|
|
|
depends on !BOOK_BLFS
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
#--- Test Suites
|
|
|
|
config CONFIG_TESTS
|
|
|
|
bool "Run testsuites"
|
2006-11-14 20:58:26 +01:00
|
|
|
depends !BOOK_CLFS2 && !BOOK_CLFS3
|
2006-08-16 19:42:54 +02:00
|
|
|
default y
|
2006-08-11 20:02:51 +02:00
|
|
|
help
|
|
|
|
#-- Run test suites
|
|
|
|
#
|
|
|
|
# You will can to select between:
|
|
|
|
#
|
|
|
|
# - Only final system Glibc, GCC and Binutils testsuites
|
|
|
|
# - All final system testsuites
|
|
|
|
# - Both temporary tools and final system testsuites
|
|
|
|
#
|
|
|
|
# HLFS and CLFS has no testsuites available in the
|
|
|
|
# temporary tools phase
|
|
|
|
|
|
|
|
# You will be promt also about the "flavour" of the
|
|
|
|
# testsuites run:
|
|
|
|
#
|
|
|
|
# - Don't stop on test suite failures
|
|
|
|
# - Abort the build at the first test suite failure
|
|
|
|
#
|
|
|
|
|
|
|
|
choice
|
2006-08-18 20:34:53 +02:00
|
|
|
prompt "Tests level"
|
2006-08-11 20:02:51 +02:00
|
|
|
depends CONFIG_TESTS
|
|
|
|
default TEST_1
|
|
|
|
|
|
|
|
config TST_1
|
|
|
|
bool "Only final system Glibc, GCC and Binutils testsuites"
|
|
|
|
|
|
|
|
config TST_2
|
|
|
|
bool "All final system testsuites"
|
|
|
|
|
|
|
|
config TST_3
|
|
|
|
bool "Both temporary tools and final system testsuites" if !BOOK_HLFS && !BOOK_CLFS
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config TEST
|
|
|
|
int
|
|
|
|
default "0" if !CONFIG_TESTS
|
|
|
|
default "1" if TST_1
|
|
|
|
default "2" if TST_2
|
|
|
|
default "3" if TST_3
|
|
|
|
|
|
|
|
choice
|
2006-08-18 20:34:53 +02:00
|
|
|
prompt "Flavour"
|
2006-08-11 20:02:51 +02:00
|
|
|
depends CONFIG_TESTS
|
|
|
|
|
|
|
|
config NO_BOMB
|
|
|
|
bool "Don't stop on test suite failures"
|
|
|
|
|
|
|
|
config BOMB
|
|
|
|
bool "Abort the build at the first test suite failure"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BOMB_TEST
|
2006-08-16 19:42:54 +02:00
|
|
|
bool
|
2006-08-18 20:34:53 +02:00
|
|
|
default n if NO_BOMB
|
|
|
|
default y if BOMB
|
2006-08-16 19:42:54 +02:00
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- End Test Suites
|
|
|
|
|
2007-04-28 17:24:20 +02:00
|
|
|
#--- Installed files logs
|
|
|
|
config INSTALL_LOG
|
|
|
|
bool "Create installed files logs"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Select this if you want to create logs of the files
|
|
|
|
# installed by each package on the final system.
|
|
|
|
|
|
|
|
#--- End Installed files logs
|
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- FSTAB
|
|
|
|
config HAVE_FSTAB
|
|
|
|
bool "Use a custom fstab file"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Select this if you have ready a proper fstab file
|
|
|
|
|
|
|
|
config FSTAB
|
|
|
|
string "Fstab file (optional)"
|
|
|
|
default "***EDIT ME***"
|
|
|
|
depends on HAVE_FSTAB
|
|
|
|
help
|
|
|
|
#-- The location of fstab file (if empty, a template is created)
|
|
|
|
#--- End FSTAB
|
|
|
|
|
|
|
|
#--- Kernel
|
|
|
|
config CONFIG_BUILD_KERNEL
|
|
|
|
bool "Build the kernel"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Select this option if you wish to build the kernel.
|
|
|
|
#
|
|
|
|
# You will be prompted for the full path to the .config
|
|
|
|
# file. It will be copied to the 'sources' directory and
|
|
|
|
# rename kernel-config
|
|
|
|
|
|
|
|
config CONFIG
|
|
|
|
string "Kernel config file"
|
|
|
|
default "***EDIT ME***"
|
|
|
|
depends on CONFIG_BUILD_KERNEL
|
|
|
|
help
|
|
|
|
#-- Fully qualified path to a kernel config file
|
|
|
|
# The config file will be copied to ${BUILD_DIR}/sources
|
|
|
|
# and renamed 'kernel-config'
|
|
|
|
#--- End Kernel
|
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config STRIP
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Strip Installed Binaries/Libraries"
|
|
|
|
default y
|
2007-02-26 21:35:33 +01:00
|
|
|
depends on !BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config VIMLANG
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Install vim-lang package"
|
|
|
|
default y
|
2007-05-30 21:45:59 +02:00
|
|
|
depends on !BOOK_HLFS && !BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
help
|
2006-08-16 19:42:54 +02:00
|
|
|
#-- Install the optional vim-lang package
|
2006-08-11 20:02:51 +02:00
|
|
|
|
|
|
|
config TIMEZONE
|
|
|
|
string "TimeZone"
|
|
|
|
default "GMT"
|
|
|
|
help
|
|
|
|
#-- The timezone as output by tzselect
|
|
|
|
# This will be copied to /etc/localtime
|
|
|
|
|
|
|
|
config LANG
|
|
|
|
string "Language"
|
|
|
|
default "$LANG"
|
|
|
|
help
|
|
|
|
#-- Language information in /etc/profile See <locale -a> for values
|
|
|
|
|
|
|
|
#--- Groff page
|
|
|
|
choice
|
|
|
|
prompt "Groff page size"
|
|
|
|
default PAGE_LETTER
|
|
|
|
help
|
|
|
|
#-- Page definition for groff: letter or A4
|
|
|
|
|
|
|
|
config PAGE_LETTER
|
|
|
|
bool "letter"
|
|
|
|
|
|
|
|
config PAGE_A4
|
|
|
|
bool "A4"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config PAGE
|
|
|
|
string
|
|
|
|
default "letter" if PAGE_LETTER
|
|
|
|
default "A4" if PAGE_A4
|
|
|
|
#--- End Groff page
|
|
|
|
|
|
|
|
#--- End Build Settings
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
menu "--- Advanced Features"
|
2006-08-13 16:38:12 +02:00
|
|
|
depends on !BOOK_BLFS
|
2006-08-11 20:02:51 +02:00
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config REPORT
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Create SBU and disk usage report"
|
|
|
|
default y
|
|
|
|
|
|
|
|
#--- ICA/farce
|
2006-08-16 19:42:54 +02:00
|
|
|
config COMPARE
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "Run comparison analysis on final stage"
|
2006-11-14 20:58:26 +01:00
|
|
|
depends !BOOK_CLFS2 && !BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Should some iterative comparison analysis by made?
|
|
|
|
#
|
|
|
|
# Unless you are familiar with ICA and/or FARCE do not
|
|
|
|
# select this option
|
|
|
|
#
|
|
|
|
# ICA and FARCE are analysis tools for comparing one
|
|
|
|
# build to the next. Builds mays differ from one iteration
|
|
|
|
# to another due to the build order and these tools try
|
|
|
|
# to ferret out those differences by examining the stored
|
|
|
|
# build logs and binary files.
|
|
|
|
#
|
|
|
|
# The scripts are well commented and can be found in ./extras/*
|
|
|
|
#
|
|
|
|
|
|
|
|
config ITERATIONS
|
2006-08-16 19:42:54 +02:00
|
|
|
int "Number of test runs (2,3,4,5)" if COMPARE
|
|
|
|
depends on COMPARE
|
2006-08-11 20:02:51 +02:00
|
|
|
range 2 5
|
|
|
|
default 3
|
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config RUN_ICA
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "ICA testing"
|
2006-08-16 19:42:54 +02:00
|
|
|
depends on COMPARE
|
2006-08-11 20:02:51 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
#-- Run ICA testing
|
|
|
|
|
2006-08-16 19:42:54 +02:00
|
|
|
config RUN_FARCE
|
2006-08-11 20:02:51 +02:00
|
|
|
bool "farce testing"
|
2006-08-16 19:42:54 +02:00
|
|
|
depends on COMPARE
|
2006-08-11 20:02:51 +02:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Run farce testing
|
|
|
|
#--- End ICA/farce
|
|
|
|
|
2006-08-29 20:16:27 +02:00
|
|
|
#--- Optimizations
|
2006-11-14 20:58:26 +01:00
|
|
|
if !BOOK_CLFS2 && !BOOK_CLFS3
|
2006-08-11 20:02:51 +02:00
|
|
|
config CONFIG_OPTIMIZE
|
2006-08-29 20:16:27 +02:00
|
|
|
bool "Use optimization (see help)"
|
2006-08-11 20:02:51 +02:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
#-- Actual optimzation flags MUST be defined in ./optimize/*
|
|
|
|
# files before activate this option.
|
|
|
|
#
|
|
|
|
# WARNING: The use of build optimizations may be dangerous.
|
|
|
|
# You should know what you are doing and be sure that the
|
|
|
|
# optimization settings listed below are what you want.
|
|
|
|
# It there are build issues or the system doesn't work as
|
|
|
|
# expected, please rebuild without optimizations before
|
|
|
|
# asking for support.
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Optimization level "
|
|
|
|
default OPT_1
|
|
|
|
depends CONFIG_OPTIMIZE
|
|
|
|
help
|
|
|
|
#-- Optimization values are set in optimize/* files
|
|
|
|
|
|
|
|
config OPT_1
|
|
|
|
bool "Final system only"
|
|
|
|
|
|
|
|
config OPT_2
|
|
|
|
bool "Both temp tools and final system"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config OPTIMIZE
|
|
|
|
int
|
|
|
|
default "0" if !CONFIG_OPTIMIZE
|
|
|
|
default "1" if OPT_1
|
|
|
|
default "2" if OPT_2
|
2006-10-02 21:32:06 +02:00
|
|
|
endif
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- End Optimizations
|
|
|
|
|
2006-08-29 20:16:27 +02:00
|
|
|
#-- Internal Settings
|
|
|
|
menu "--- Internal Settings (WARNING: for jhalfs developers only)"
|
|
|
|
|
|
|
|
config SCRIPT_ROOT
|
|
|
|
string "Scripts root"
|
|
|
|
default "jhalfs"
|
|
|
|
|
|
|
|
config JHALFSDIR
|
|
|
|
string "jhalfs directory"
|
|
|
|
default "$BUILDDIR/$SCRIPT_ROOT"
|
|
|
|
|
2007-04-28 17:24:20 +02:00
|
|
|
config LOGDIRBASE
|
|
|
|
string "Build logs directory basename"
|
|
|
|
default "logs"
|
|
|
|
|
2006-08-29 20:16:27 +02:00
|
|
|
config LOGDIR
|
|
|
|
string "Build logs directory"
|
2007-04-28 17:24:20 +02:00
|
|
|
default "$JHALFSDIR/$LOGDIRBASE"
|
|
|
|
|
|
|
|
config TESTLOGDIRBASE
|
|
|
|
string "Test suites logs directory basename"
|
|
|
|
default "test-logs"
|
2006-08-29 20:16:27 +02:00
|
|
|
|
|
|
|
config TESTLOGDIR
|
|
|
|
string "Test suites logs directory"
|
2007-04-28 17:24:20 +02:00
|
|
|
default "$JHALFSDIR/$TESTLOGDIRBASE"
|
|
|
|
|
|
|
|
config FILELOGDIRBASE
|
|
|
|
string "Installed files logs directory basename"
|
|
|
|
default "installed-files"
|
|
|
|
|
|
|
|
config FILELOGDIR
|
|
|
|
string "Installed files logs directory"
|
|
|
|
default "$JHALFSDIR/$FILELOGDIRBASE"
|
2006-08-29 20:16:27 +02:00
|
|
|
|
|
|
|
config ICALOGDIR
|
|
|
|
string "ICA logs directory"
|
|
|
|
default "$LOGDIR/ICA"
|
|
|
|
|
|
|
|
config FARCELOGDIR
|
|
|
|
string "farce logs directory"
|
|
|
|
default "$LOGDIR/farce"
|
|
|
|
|
|
|
|
config MKFILE
|
|
|
|
string "Makefile"
|
|
|
|
default "$JHALFSDIR/Makefile"
|
|
|
|
|
|
|
|
config XSL
|
|
|
|
string "XSL stylesheet"
|
|
|
|
default "$PROGNAME.xsl"
|
|
|
|
|
|
|
|
config PKG_LST
|
|
|
|
string "Package contents list"
|
|
|
|
default "unpacked"
|
|
|
|
|
|
|
|
#--- End Internal Settings
|
|
|
|
endmenu
|
|
|
|
|
2006-08-11 20:02:51 +02:00
|
|
|
#--- End Advanced Features
|
|
|
|
endmenu
|
2006-10-18 21:28:47 +02:00
|
|
|
|
2006-10-19 19:27:18 +02:00
|
|
|
config REBUILD_MAKEFILE
|
2006-10-18 21:28:47 +02:00
|
|
|
bool "Rebuild the Makefile (see help)"
|
|
|
|
default n
|
|
|
|
depends on !BOOK_BLFS
|
|
|
|
help
|
|
|
|
#-- Rebuild the Makefile
|
|
|
|
#
|
|
|
|
# This option alow to rebuild the Makefile after
|
|
|
|
# customizing the base system build scripts.
|
|
|
|
#
|
|
|
|
# See README.CUSTOM for more info about this feature.
|
|
|
|
|