diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-02-20 19:28:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-24 13:31:45 +0000 |
commit | ca7306f78a47c58f5f12178dd23a8fb584d6d678 (patch) | |
tree | 4d68fff78f7c4d66105ba10b1d47c817acd8e880 /scripts | |
parent | 2cbfc65bee380e2bac9240221746f8c5ba37d675 (diff) | |
download | poky-ca7306f78a47c58f5f12178dd23a8fb584d6d678.tar.gz |
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.
(From OE-Core rev: 7067abd31d9dd4b98ec70c1c7effbe2904797cd1)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/devtool/standard.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index d64e18e179..0339d12763 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 | |||
567 | logger.debug('writing append file %s' % appendfile) | 567 | logger.debug('writing append file %s' % appendfile) |
568 | with open(appendfile, 'a') as f: | 568 | with open(appendfile, 'a') as f: |
569 | f.write('###--- _extract_source\n') | 569 | f.write('###--- _extract_source\n') |
570 | f.write('ERROR_QA:remove = "patch-fuzz"\n') | ||
570 | f.write('DEVTOOL_TEMPDIR = "%s"\n' % tempdir) | 571 | f.write('DEVTOOL_TEMPDIR = "%s"\n' % tempdir) |
571 | f.write('DEVTOOL_DEVBRANCH = "%s"\n' % devbranch) | 572 | f.write('DEVTOOL_DEVBRANCH = "%s"\n' % devbranch) |
572 | if not is_kernel_yocto: | 573 | if not is_kernel_yocto: |