Lines Matching full:make
217 make = f"{cmd} ARCH={arch} CROSS_COMPILE={cross_compile}"
218 outmsg, errmsg, ret = exec_cmd(make, cwd=knl_path)
220 print(f'"{make}" errors --> \n {errmsg}')
221 return ret, f'"{make}" errors --> \n {errmsg}'
223 return ret, f'"{make}" success!'
227 make = f"make {config} ARCH={arch} CROSS_COMPILE={corss_compile}"
228 outmsg, errmsg, ret = exec_cmd(make, cwd=knl_path)
230 print(f'"{make}" errors --> \n {errmsg}')
231 return ret, f'"{make}" errors --> \n {errmsg}'
233 return ret, f'"{make}" success!'
237 make = f'make -j{os.cpu_count()} ARCH={arch} CROSS_COMPILE={cross_compile}'
238 outmsg, errmsg, ret = exec_cmd(make, cwd=knl_path)
240 print(f'"{make}" errors --> \n {errmsg}')
241 return ret, f'"{make}" errors --> \n {errmsg}'
243 print(f'"{make}" warnings --> \n {errmsg}')
263 return 2, f'"{make}" warning --> \n {new_issue}'
265 return ret, f'"{make}" warnings in ignores --> \n {known_issue}'
267 return ret, f'"{make}" success!'
298 ret, msg = make_cmd('make defconfig', arch, cross_compile, knl_path)
303 ret, msg = make_cmd('make oldconfig', arch, cross_compile, knl_path)
308 ret, msg = make_cmd('make clean', arch, cross_compile, knl_path)
328 ret, msg = make_cmd('make clean', arch, cross_compile, knl_path)
338 ret, msg = make_cmd('make allmodconfig', arch, cross_compile, knl_path)
346 ret, msg = make_cmd('make clean', arch, cross_compile, knl_path)