From: Alexander Kanavin Date: Mon, 20 Feb 2023 18:28:13 +0000 (+0100) Subject: devtool: ignore patch-fuzz errors when extracting source X-Git-Tag: 2023-04-mickledore~417 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7067abd31d9dd4b98ec70c1c7effbe2904797cd1;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git devtool: ignore patch-fuzz errors when extracting source So that patch fuzz issues can actually be fixed, as extracting source with 'devtool modify' is the first step for that. Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index d64e18e1798..0339d127635 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py @@ -567,6 +567,7 @@ def _extract_source(srctree, keep_temp, devbranch, sync, config, basepath, works logger.debug('writing append file %s' % appendfile) with open(appendfile, 'a') as f: f.write('###--- _extract_source\n') + f.write('ERROR_QA:remove = "patch-fuzz"\n') f.write('DEVTOOL_TEMPDIR = "%s"\n' % tempdir) f.write('DEVTOOL_DEVBRANCH = "%s"\n' % devbranch) if not is_kernel_yocto: