Lines Matching +full:config +full:- +full:array
1 // SPDX-License-Identifier: GPL-2.0-or-later
18 * Reads a kernel config, parses it and writes results into an array of
21 * The path to the kernel config should be autodetected in most of the cases as
26 * filled with config variable name such as 'CONFIG_FOO', the id_len should
31 * 'm' - config option set to m
32 * 'y' - config option set to y
33 * 'v' - config option set to other value
34 * 'n' - config option is not set
35 * 0 - config option not found
40 * @param vars An array of caller initalized tst_kconfig_var structures.
41 * @param vars_len Length of the vars array.
47 * config. Return 0 if every config is satisfied and return 1 if at least
50 * The config options can be passed in two different formats, either
55 * @param kconfigs NULL-terminated array of config strings needed for the testrun.