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