log_file.close()
status = p.returncode
- if status == 0 and cmdline_args.check_exports:
+ if status == 0:
warn = re.compile('^WARNING:.*undefined.*')
log_file = open(log_file_name, 'r')
for l in log_file:
help='Build allyesconfig rather than only backport code.')
parser.add_argument('--defconfig', metavar='<name>', type=str,
help='Build this defconfig rather than only backport code.')
- parser.add_argument('--check-exports', const=True, default=False, action="store_const",
- help='Check for linker warnings indicating exported symbols are missing.')
args = parser.parse_args()
if not os.path.exists(modules):