Lines Matching refs:make_options
61 def make_allyesconfig(self, build_dir, make_options) -> None: argument
64 def make_olddefconfig(self, build_dir, make_options) -> None: argument
68 if make_options:
69 command.extend(make_options)
80 def make(self, jobs, build_dir, make_options) -> None: argument
82 if make_options:
83 command.extend(make_options)
146 def make_allyesconfig(self, build_dir, make_options) -> None: argument
150 if make_options:
151 command.extend(make_options)
277 def build_config(self, build_dir, make_options) -> bool: argument
284 self._ops.make_olddefconfig(build_dir, make_options)
290 def build_reconfig(self, build_dir, make_options) -> bool: argument
300 return self.build_config(build_dir, make_options)
305 return self.build_config(build_dir, make_options)
307 def build_kernel(self, alltests, jobs, build_dir, make_options) -> bool: argument
310 self._ops.make_allyesconfig(build_dir, make_options)
311 self._ops.make_olddefconfig(build_dir, make_options)
312 self._ops.make(jobs, build_dir, make_options)