A few changes to Config.in.
This commit is contained in:
parent
fa58f812ae
commit
623643ef9e
1 changed files with 23 additions and 16 deletions
39
Config.in
39
Config.in
|
@ -398,6 +398,7 @@ depends on BOOK_HLFS
|
||||||
#------------------
|
#------------------
|
||||||
config CONFIG_COMPARE
|
config CONFIG_COMPARE
|
||||||
bool "Run comparison analysis on final stage"
|
bool "Run comparison analysis on final stage"
|
||||||
|
depends !BOOK_CLFS2
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
#--- Should some iterative comparison analysis by made?
|
#--- Should some iterative comparison analysis by made?
|
||||||
|
@ -409,7 +410,7 @@ depends on BOOK_HLFS
|
||||||
# to ferret out those differences by examining the stored
|
# to ferret out those differences by examining the stored
|
||||||
# build logs and binary files.
|
# build logs and binary files.
|
||||||
#
|
#
|
||||||
# The scripts are well commented and can be found here ./extras/*
|
# The scripts are well commented and can be found in ./extras/*
|
||||||
#
|
#
|
||||||
|
|
||||||
config ITERATIONS
|
config ITERATIONS
|
||||||
|
@ -435,32 +436,38 @@ depends on BOOK_HLFS
|
||||||
|
|
||||||
config CONFIG_TESTS
|
config CONFIG_TESTS
|
||||||
bool "Run testsuites"
|
bool "Run testsuites"
|
||||||
|
depends !BOOK_CLFS2
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
#--- Run test suites [1-3]
|
#--- Run test suites
|
||||||
# 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
#
|
||||||
# 2 = all chapter06 testsuites
|
# You will can to select between:
|
||||||
# 3 = all chapter05 and chapter06 testsuites
|
#
|
||||||
# (in CLFS, alias to 2)
|
# - 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
|
||||||
|
# toolchain phase
|
||||||
|
|
||||||
HLFS has no testsuites available in the toolchain phase
|
# You will be promt also about the "flavour" of the
|
||||||
# 1 = only chapter06 Glibc, Butterfly-tookchain
|
# testsuites run:
|
||||||
# 2 = all chapter06 testsuites
|
#
|
||||||
|
# - Don't stop on test suite failures
|
||||||
|
# - Abort the build at the first test suite failure
|
||||||
#
|
#
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Tests ->"
|
prompt "Tests ->"
|
||||||
depends !BOOK_CLFS2 && CONFIG_TESTS
|
depends CONFIG_TESTS
|
||||||
default TEST_1
|
default TEST_1
|
||||||
|
|
||||||
config TST_1
|
config TST_1
|
||||||
bool "Only chap06 Glibc/GCC/Binutils tests" if !BOOK_HLFS
|
bool "Only final system Glibc, GCC and Binutils testsuites"
|
||||||
config TST_1
|
|
||||||
bool "Only chap06 Glibc/Butterfly-toolchain" if BOOK_HLFS
|
|
||||||
config TST_2
|
config TST_2
|
||||||
bool "All chap06 testsuites"
|
bool "All final system testsuites"
|
||||||
config TST_3
|
config TST_3
|
||||||
bool "All chap05/06 testsuites" if !BOOK_HLFS
|
bool "Both temporary tools and final system testsuites" if !BOOK_HLFS && !BOOK_CLFS
|
||||||
endchoice
|
endchoice
|
||||||
config TEST
|
config TEST
|
||||||
int
|
int
|
||||||
|
@ -470,7 +477,7 @@ depends on BOOK_HLFS
|
||||||
default "3" if TST_3
|
default "3" if TST_3
|
||||||
choice
|
choice
|
||||||
prompt "Flavour ->"
|
prompt "Flavour ->"
|
||||||
depends !BOOK_CLFS2 && CONFIG_TESTS
|
depends CONFIG_TESTS
|
||||||
default NO_BOMB
|
default NO_BOMB
|
||||||
|
|
||||||
config NO_BOMB
|
config NO_BOMB
|
||||||
|
|
Reference in a new issue