Lines Matching defs:str
45 def __init__(self, linux_arch: str, cross_compile: Optional[str]):
60 def make_olddefconfig(self, build_dir: str, make_options) -> None:
74 def make(self, jobs, build_dir: str, make_options) -> None:
95 def start(self, params: List[str], build_dir: str) -> subprocess.Popen:
101 def __init__(self, qemu_arch_params: qemu_config.QemuArchParams, cross_compile: Optional[str]):
115 def start(self, params: List[str], build_dir: str) -> subprocess.Popen:
144 def start(self, params: List[str], build_dir: str) -> subprocess.Popen:
154 def get_kconfig_path(build_dir: str) -> str:
157 def get_kunitconfig_path(build_dir: str) -> str:
160 def get_old_kunitconfig_path(build_dir: str) -> str:
163 def get_parsed_kunitconfig(build_dir: str,
164 kunitconfig_paths: Optional[List[str]]=None) -> kunit_config.Kconfig:
187 def get_outfile_path(build_dir: str) -> str:
190 def _default_qemu_config_path(arch: str) -> str:
198 def _get_qemu_ops(config_path: str,
199 extra_qemu_args: Optional[List[str]],
200 cross_compile: Optional[str]) -> Tuple[str, LinuxSourceTreeOperations]:
230 build_dir: str,
231 kunitconfig_paths: Optional[List[str]]=None,
232 kconfig_add: Optional[List[str]]=None,
264 def validate_config(self, build_dir: str) -> bool:
279 def build_config(self, build_dir: str, make_options) -> bool:
299 def _kunitconfig_changed(self, build_dir: str) -> bool:
307 def build_reconfig(self, build_dir: str, make_options) -> bool:
323 def build_kernel(self, jobs, build_dir: str, make_options) -> bool: