mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 15:32:14 +02:00
archiver.bbclass: emit patch series files for original src
Emit patch series files for original src so that the user knows how to apply the patch orderly. [YOCTO #5113] (From OE-Core rev: 053631bc3cf7c7c2d090decaa3b5e5690963e64a) Signed-off-by: Christopher Larson <kergoth@gmail.com> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4a91e1449b
commit
21169c3042
@@ -150,6 +150,19 @@ python do_ar_original() {
|
||||
tar = tarfile.open(tarname, 'w:gz')
|
||||
tar.add('.')
|
||||
tar.close()
|
||||
|
||||
# Emit patch series files for 'original'
|
||||
bb.note('Writing patch series files...')
|
||||
for patch in src_patches(d):
|
||||
_, _, local, _, _, parm = bb.fetch.decodeurl(patch)
|
||||
patchdir = parm.get('patchdir')
|
||||
if patchdir:
|
||||
series = os.path.join(ar_outdir, 'series.subdir.%s' % patchdir.replace('/', '_'))
|
||||
else:
|
||||
series = os.path.join(ar_outdir, 'series')
|
||||
|
||||
with open(series, 'a') as s:
|
||||
s.write('%s -p%s\n' % (os.path.basename(local), parm['striplevel']))
|
||||
}
|
||||
|
||||
python do_ar_patched() {
|
||||
|
||||
Reference in New Issue
Block a user