Added range limit to the number of ICA/FARCE test runs

This commit is contained in:
George Boudreau 2006-07-27 00:13:11 +00:00
parent 14f86de443
commit 53f7156172

View file

@ -183,17 +183,19 @@ depends on BOOK_CLFS || BOOK_CLFS2
help help
#--- What build method should be used: a chroot jail or minimal boot system #--- 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. # Review the Cross-LFS book chap6 "TO BOOT OR CHROOT" for a full explanation.
config BUILD_CHROOT config BUILD_CHROOT
bool "chroot" bool "chroot"
config BUILD_BOOT config BUILD_BOOT
bool "boot" bool "boot"
endchoice endchoice
config METHOD config METHOD
string string
default "" if !BUILD_CHROOT && !BUILD_ROOT default "" if !BUILD_CHROOT && !BUILD_ROOT
default "chroot" if BUILD_CHROOT default "chroot" if BUILD_CHROOT
default "boot" if BUILD_ROOT default "boot" if BUILD_ROOT
config BOOT_CONFIG config BOOT_CONFIG
string "BOOT kernel config file (manditory)" string "BOOT kernel config file (manditory)"
default "" default ""
@ -343,6 +345,7 @@ depends on BOOK_HLFS
config ITERATIONS config ITERATIONS
int "Number of test runs (2,3,4,5)" int "Number of test runs (2,3,4,5)"
depends on CONFIG_COMPARE depends on CONFIG_COMPARE
range 2 5
default 3 default 3
config CONFIG_ICA config CONFIG_ICA