Path: blob/master/tools/testing/ktest/examples/include/min-config.conf
26299 views
#1# This file has some examples for creating a MIN_CONFIG.2# (A .config file that is the minimum for a machine to boot, or3# to boot and make a network connection.)4#5# A MIN_CONFIG is very useful as it is the minimum configuration6# needed to boot a given machine. You can debug someone else's7# .config by only setting the configs in your MIN_CONFIG. The closer8# your MIN_CONFIG is to the true minimum set of configs needed to9# boot your machine, the closer the config you test with will be10# to the users config that had the failure.11#12# The make_min_config test allows you to create a MIN_CONFIG that13# is truly the minimum set of configs needed to boot a box.14#15# In this example, the final config will reside in16# ${CONFIG_DIR}/config-new-min and ${CONFIG_DIR}/config-new-min-net.17# Just move one to the location you have set for MIN_CONFIG.18#19# The first test creates a MIN_CONFIG that will be the minimum20# configuration to boot ${MACHINE} and be able to ssh to it.21#22# The second test creates a MIN_CONFIG that will only boot23# the target and most likely will not let you ssh to it. (Notice24# how the second test uses the first test's result to continue with.25# This is because the second test config is a subset of the first).26#27# The ${CONFIG_DIR}/config-skip (and -net) will hold the configs28# that ktest.pl found would not boot the target without them set.29# The config-new-min holds configs that ktest.pl could not test30# directly because another config that was needed to boot the box31# selected them. Sometimes it is possible that this file will hold32# the true minimum configuration. You can test to see if this is33# the case by running the boot test with BOOT_TYPE = allnoconfig and34# setting setting the MIN_CONFIG to ${CONFIG_DIR}/config-skip. If the35# machine still boots, then you can use the config-skip as your MIN_CONFIG.36#37# These tests can run for several hours (and perhaps days).38# It's OK to kill the test with a Ctrl^C. By restarting without39# modifying this config, ktest.pl will notice that the config-new-min(-net)40# exists, and will use that instead as the starting point.41# The USE_OUTPUT_MIN_CONFIG is set to 1 to keep ktest.pl from asking42# you if you want to use the OUTPUT_MIN_CONFIG as the starting point.43# By using the OUTPUT_MIN_CONFIG as the starting point will allow ktest.pl to44# start almost where it left off.45#46TEST_START IF ${TEST} == min-config47TEST_TYPE = make_min_config48OUTPUT_MIN_CONFIG = ${CONFIG_DIR}/config-new-min-net49IGNORE_CONFIG = ${CONFIG_DIR}/config-skip-net50MIN_CONFIG_TYPE = test51TEST = ${SSH} echo hi52USE_OUTPUT_MIN_CONFIG = 15354TEST_START IF ${TEST} == min-config && ${MULTI}55TEST_TYPE = make_min_config56OUTPUT_MIN_CONFIG = ${CONFIG_DIR}/config-new-min57IGNORE_CONFIG = ${CONFIG_DIR}/config-skip58MIN_CONFIG = ${CONFIG_DIR}/config-new-min-net59USE_OUTPUT_MIN_CONFIG = 1606162