Fixed some config settings for CLFS3.
Remains to add mips arch support.
This commit is contained in:
parent
7a06ac1a9e
commit
05362705d3
1 changed files with 9 additions and 9 deletions
18
Config.in
18
Config.in
|
@ -57,7 +57,7 @@ menu "--- BOOK Settings"
|
|||
#-- A local working copy
|
||||
|
||||
config BRANCH
|
||||
bool "Branch or stable book" if !BOOK_CLFS2
|
||||
bool "Branch or stable book" if !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
help
|
||||
#-- A supported SVN branch or stable released book
|
||||
endchoice
|
||||
|
@ -91,19 +91,19 @@ menu "--- BOOK Settings"
|
|||
bool "x86"
|
||||
|
||||
config ARCH_MIPS
|
||||
bool "mips" if !BOOK_CLFS2 || !BOOK_CLFS3
|
||||
bool "mips" if !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
|
||||
config ARCH_PPC
|
||||
bool "ppc" if !BOOK_CLFS2 || !BOOK_CLFS3
|
||||
bool "ppc" if !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
|
||||
config ARCH_SPARC
|
||||
bool "sparc" if !BOOK_CLFS2 || !BOOK_CLFS3
|
||||
bool "sparc" if !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
|
||||
config ARCH_ALPHA
|
||||
bool "alpha" if !BOOK_CLFS2 || !BOOK_CLFS3
|
||||
bool "alpha" if !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
|
||||
config ARCH_ARM
|
||||
bool "arm" if !BOOK_CLFS || !BOOK_CLFS3
|
||||
bool "arm" if !BOOK_CLFS && !BOOK_CLFS3
|
||||
endchoice
|
||||
|
||||
choice
|
||||
|
@ -549,7 +549,7 @@ menu "--- Build Settings"
|
|||
#--- Test Suites
|
||||
config CONFIG_TESTS
|
||||
bool "Run testsuites"
|
||||
depends !BOOK_CLFS2
|
||||
depends !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
default y
|
||||
help
|
||||
#-- Run test suites
|
||||
|
@ -709,7 +709,7 @@ menu "--- Advanced Features"
|
|||
#--- ICA/farce
|
||||
config COMPARE
|
||||
bool "Run comparison analysis on final stage"
|
||||
depends !BOOK_CLFS2
|
||||
depends !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
default n
|
||||
help
|
||||
#-- Should some iterative comparison analysis by made?
|
||||
|
@ -748,7 +748,7 @@ menu "--- Advanced Features"
|
|||
#--- End ICA/farce
|
||||
|
||||
#--- Optimizations
|
||||
if !BOOK_CLFS2
|
||||
if !BOOK_CLFS2 && !BOOK_CLFS3
|
||||
config CONFIG_OPTIMIZE
|
||||
bool "Use optimization (see help)"
|
||||
default n
|
||||
|
|
Reference in a new issue