Lines Matching +full:directory +full:- +full:based
1 # SPDX-License-Identifier: GPL-2.0
24 This class provides methods to run text-based interface of Kconfig
35 # the directory of the test being run
42 """Run text-based Kconfig executable and save the result.
44 mode: input mode option (--oldaskconfig, --defconfig=<file> etc.)
54 command.append('-s')
57 # Override 'srctree' environment to make the test as the top directory
64 # Run Kconfig in a temporary directory.
65 # This directory is automatically removed when done.
68 # if .config is given, copy it to the working directory
82 ps.stdin.write(in_keys.encode('utf-8'))
146 return self._run_conf('--oldaskconfig', dot_config=dot_config,
156 return self._run_conf('--oldconfig', dot_config=dot_config,
165 return self._run_conf('--olddefconfig', dot_config=dot_config)
174 return self._run_conf('--defconfig={}'.format(defconfig_path))
181 return self._run_conf('--{}config'.format(mode), extra_env=extra_env)
235 return self._run_conf('--savedefconfig', out_file='defconfig')
243 return self._run_conf('--listnewconfig', dot_config=dot_config,