Lines Matching full:make
215 make = f"{cmd} ARCH={arch} CROSS_COMPILE={cross_compile}"
216 outmsg, errmsg, ret = exec_cmd(make, cwd=knl_path)
218 print(f'"{make}" errors --> \n {errmsg}')
219 return ret, f'"{make}" errors --> \n {errmsg}'
221 return ret, f'"{make}" success!'
225 make = f"make {config} ARCH={arch} CROSS_COMPILE={corss_compile}"
226 outmsg, errmsg, ret = exec_cmd(make, cwd=knl_path)
228 print(f'"{make}" errors --> \n {errmsg}')
229 return ret, f'"{make}" errors --> \n {errmsg}'
231 return ret, f'"{make}" success!'
235 make = f'make -j{os.cpu_count()} ARCH={arch} CROSS_COMPILE={cross_compile}'
236 outmsg, errmsg, ret = exec_cmd(make, cwd=knl_path)
238 print(f'"{make}" errors --> \n {errmsg}')
239 return ret, f'"{make}" errors --> \n {errmsg}'
241 print(f'"{make}" warnings --> \n {errmsg}')
261 return 2, f'"{make}" warning --> \n {new_issue}'
263 return ret, f'"{make}" warnings in ignores --> \n {known_issue}'
265 return ret, f'"{make}" success!'
296 ret, msg = make_cmd('make defconfig', arch, cross_compile, knl_path)
301 ret, msg = make_cmd('make oldconfig', arch, cross_compile, knl_path)
306 ret, msg = make_cmd('make clean', arch, cross_compile, knl_path)
326 ret, msg = make_cmd('make clean', arch, cross_compile, knl_path)
336 ret, msg = make_cmd('make allmodconfig', arch, cross_compile, knl_path)
344 ret, msg = make_cmd('make clean', arch, cross_compile, knl_path)