1*92b42cb3SPatrick Williams# 2*92b42cb3SPatrick Williams# Copyright OpenEmbedded Contributors 3*92b42cb3SPatrick Williams# 4*92b42cb3SPatrick Williams# SPDX-License-Identifier: MIT 5*92b42cb3SPatrick Williams# 6*92b42cb3SPatrick Williams 7eb8dc403SDave Cobbley# 8eb8dc403SDave Cobbley# This bbclass is used for creating archive for: 9eb8dc403SDave Cobbley# 1) original (or unpacked) source: ARCHIVER_MODE[src] = "original" 10eb8dc403SDave Cobbley# 2) patched source: ARCHIVER_MODE[src] = "patched" (default) 11eb8dc403SDave Cobbley# 3) configured source: ARCHIVER_MODE[src] = "configured" 127e0e3c0cSAndrew Geissler# 4) source mirror: ARCHIVER_MODE[src] = "mirror" 1382c905dcSAndrew Geissler# 5) The patches between do_unpack and do_patch: 14eb8dc403SDave Cobbley# ARCHIVER_MODE[diff] = "1" 15eb8dc403SDave Cobbley# And you can set the one that you'd like to exclude from the diff: 16eb8dc403SDave Cobbley# ARCHIVER_MODE[diff-exclude] ?= ".pc autom4te.cache patches" 1782c905dcSAndrew Geissler# 6) The environment data, similar to 'bitbake -e recipe': 18eb8dc403SDave Cobbley# ARCHIVER_MODE[dumpdata] = "1" 1982c905dcSAndrew Geissler# 7) The recipe (.bb and .inc): ARCHIVER_MODE[recipe] = "1" 2082c905dcSAndrew Geissler# 8) Whether output the .src.rpm package: 21eb8dc403SDave Cobbley# ARCHIVER_MODE[srpm] = "1" 2282c905dcSAndrew Geissler# 9) Filter the license, the recipe whose license in 23eb8dc403SDave Cobbley# COPYLEFT_LICENSE_INCLUDE will be included, and in 24eb8dc403SDave Cobbley# COPYLEFT_LICENSE_EXCLUDE will be excluded. 25eb8dc403SDave Cobbley# COPYLEFT_LICENSE_INCLUDE = 'GPL* LGPL*' 26eb8dc403SDave Cobbley# COPYLEFT_LICENSE_EXCLUDE = 'CLOSED Proprietary' 2782c905dcSAndrew Geissler# 10) The recipe type that will be archived: 28eb8dc403SDave Cobbley# COPYLEFT_RECIPE_TYPES = 'target' 2982c905dcSAndrew Geissler# 11) The source mirror mode: 3082c905dcSAndrew Geissler# ARCHIVER_MODE[mirror] = "split" (default): Sources are split into 3182c905dcSAndrew Geissler# per-recipe directories in a similar way to other archiver modes. 3282c905dcSAndrew Geissler# Post-processing may be required to produce a single mirror directory. 3382c905dcSAndrew Geissler# This does however allow inspection of duplicate sources and more 3482c905dcSAndrew Geissler# intelligent handling. 3582c905dcSAndrew Geissler# ARCHIVER_MODE[mirror] = "combined": All sources are placed into a single 3682c905dcSAndrew Geissler# directory suitable for direct use as a mirror. Duplicate sources are 3782c905dcSAndrew Geissler# ignored. 3882c905dcSAndrew Geissler# 12) Source mirror exclusions: 3982c905dcSAndrew Geissler# ARCHIVER_MIRROR_EXCLUDE is a list of prefixes to exclude from the mirror. 4082c905dcSAndrew Geissler# This may be used for sources which you are already publishing yourself 4182c905dcSAndrew Geissler# (e.g. if the URI starts with 'https://mysite.com/' and your mirror is 4282c905dcSAndrew Geissler# going to be published to the same site). It may also be used to exclude 4382c905dcSAndrew Geissler# local files (with the prefix 'file://') if these will be provided as part 4482c905dcSAndrew Geissler# of an archive of the layers themselves. 45eb8dc403SDave Cobbley# 46eb8dc403SDave Cobbley 47eb8dc403SDave Cobbley# Create archive for all the recipe types 48eb8dc403SDave CobbleyCOPYLEFT_RECIPE_TYPES ?= 'target native nativesdk cross crosssdk cross-canadian' 49eb8dc403SDave Cobbleyinherit copyleft_filter 50eb8dc403SDave Cobbley 51eb8dc403SDave CobbleyARCHIVER_MODE[srpm] ?= "0" 52eb8dc403SDave CobbleyARCHIVER_MODE[src] ?= "patched" 53eb8dc403SDave CobbleyARCHIVER_MODE[diff] ?= "0" 54eb8dc403SDave CobbleyARCHIVER_MODE[diff-exclude] ?= ".pc autom4te.cache patches" 55eb8dc403SDave CobbleyARCHIVER_MODE[dumpdata] ?= "0" 56eb8dc403SDave CobbleyARCHIVER_MODE[recipe] ?= "0" 5782c905dcSAndrew GeisslerARCHIVER_MODE[mirror] ?= "split" 58595f6308SAndrew GeisslerARCHIVER_MODE[compression] ?= "xz" 59eb8dc403SDave Cobbley 60eb8dc403SDave CobbleyDEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/sources" 61f0343792SAndrew GeisslerARCHIVER_TOPDIR ?= "${WORKDIR}/archiver-sources" 62615f2f11SAndrew GeisslerARCHIVER_ARCH = "${TARGET_SYS}" 63615f2f11SAndrew GeisslerARCHIVER_OUTDIR = "${ARCHIVER_TOPDIR}/${ARCHIVER_ARCH}/${PF}/" 6419323693SBrad BishopARCHIVER_RPMTOPDIR ?= "${WORKDIR}/deploy-sources-rpm" 65615f2f11SAndrew GeisslerARCHIVER_RPMOUTDIR = "${ARCHIVER_RPMTOPDIR}/${ARCHIVER_ARCH}/${PF}/" 66eb8dc403SDave CobbleyARCHIVER_WORKDIR = "${WORKDIR}/archiver-work/" 67eb8dc403SDave Cobbley 6882c905dcSAndrew Geissler# When producing a combined mirror directory, allow duplicates for the case 6982c905dcSAndrew Geissler# where multiple recipes use the same SRC_URI. 7082c905dcSAndrew GeisslerARCHIVER_COMBINED_MIRRORDIR = "${ARCHIVER_TOPDIR}/mirror" 717e0e3c0cSAndrew GeisslerSSTATE_ALLOW_OVERLAP_FILES += "${DEPLOY_DIR_SRC}/mirror" 7219323693SBrad Bishop 73eb8dc403SDave Cobbleydo_dumpdata[dirs] = "${ARCHIVER_OUTDIR}" 74eb8dc403SDave Cobbleydo_ar_recipe[dirs] = "${ARCHIVER_OUTDIR}" 75eb8dc403SDave Cobbleydo_ar_original[dirs] = "${ARCHIVER_OUTDIR} ${ARCHIVER_WORKDIR}" 76eb8dc403SDave Cobbley 77eb8dc403SDave Cobbley# This is a convenience for the shell script to use it 78eb8dc403SDave Cobbley 79eb8dc403SDave Cobbley 80eb8dc403SDave Cobbleypython () { 81eb8dc403SDave Cobbley pn = d.getVar('PN') 82eb8dc403SDave Cobbley assume_provided = (d.getVar("ASSUME_PROVIDED") or "").split() 83eb8dc403SDave Cobbley if pn in assume_provided: 84eb8dc403SDave Cobbley for p in d.getVar("PROVIDES").split(): 85eb8dc403SDave Cobbley if p != pn: 86eb8dc403SDave Cobbley pn = p 87eb8dc403SDave Cobbley break 88eb8dc403SDave Cobbley 89eb8dc403SDave Cobbley included, reason = copyleft_should_include(d) 90eb8dc403SDave Cobbley if not included: 91eb8dc403SDave Cobbley bb.debug(1, 'archiver: %s is excluded: %s' % (pn, reason)) 92eb8dc403SDave Cobbley return 93eb8dc403SDave Cobbley else: 94eb8dc403SDave Cobbley bb.debug(1, 'archiver: %s is included: %s' % (pn, reason)) 95eb8dc403SDave Cobbley 96eb8dc403SDave Cobbley 97eb8dc403SDave Cobbley # glibc-locale: do_fetch, do_unpack and do_patch tasks have been deleted, 98eb8dc403SDave Cobbley # so avoid archiving source here. 99eb8dc403SDave Cobbley if pn.startswith('glibc-locale'): 100eb8dc403SDave Cobbley return 101eb8dc403SDave Cobbley 102eb8dc403SDave Cobbley # We just archive gcc-source for all the gcc related recipes 103eb8dc403SDave Cobbley if d.getVar('BPN') in ['gcc', 'libgcc'] \ 104eb8dc403SDave Cobbley and not pn.startswith('gcc-source'): 105eb8dc403SDave Cobbley bb.debug(1, 'archiver: %s is excluded, covered by gcc-source' % pn) 106eb8dc403SDave Cobbley return 107eb8dc403SDave Cobbley 108615f2f11SAndrew Geissler # TARGET_SYS in ARCHIVER_ARCH will break the stamp for gcc-source in multiconfig 109615f2f11SAndrew Geissler if pn.startswith('gcc-source'): 110615f2f11SAndrew Geissler d.setVar('ARCHIVER_ARCH', "allarch") 111615f2f11SAndrew Geissler 11279641f25SBrad Bishop def hasTask(task): 11379641f25SBrad Bishop return bool(d.getVarFlag(task, "task", False)) and not bool(d.getVarFlag(task, "noexec", False)) 11479641f25SBrad Bishop 115eb8dc403SDave Cobbley ar_src = d.getVarFlag('ARCHIVER_MODE', 'src') 116eb8dc403SDave Cobbley ar_dumpdata = d.getVarFlag('ARCHIVER_MODE', 'dumpdata') 117eb8dc403SDave Cobbley ar_recipe = d.getVarFlag('ARCHIVER_MODE', 'recipe') 118eb8dc403SDave Cobbley 119eb8dc403SDave Cobbley if ar_src == "original": 120eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_original' % pn) 121eb8dc403SDave Cobbley # 'patched' and 'configured' invoke do_unpack_and_patch because 122eb8dc403SDave Cobbley # do_ar_patched resp. do_ar_configured depend on it, but for 'original' 123eb8dc403SDave Cobbley # we have to add it explicitly. 124eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1': 125eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_unpack_and_patch' % pn) 126eb8dc403SDave Cobbley elif ar_src == "patched": 127eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_patched' % pn) 128eb8dc403SDave Cobbley elif ar_src == "configured": 129eb8dc403SDave Cobbley # We can't use "addtask do_ar_configured after do_configure" since it 130c926e17cSAndrew Geissler # will cause the deptask of do_populate_sysroot to run no matter what 131eb8dc403SDave Cobbley # archives we need, so we add the depends here. 132eb8dc403SDave Cobbley 133eb8dc403SDave Cobbley # There is a corner case with "gcc-source-${PV}" recipes, they don't have 134eb8dc403SDave Cobbley # the "do_configure" task, so we need to use "do_preconfigure" 1351a4b7ee2SBrad Bishop if hasTask("do_preconfigure"): 136eb8dc403SDave Cobbley d.appendVarFlag('do_ar_configured', 'depends', ' %s:do_preconfigure' % pn) 1371a4b7ee2SBrad Bishop elif hasTask("do_configure"): 138eb8dc403SDave Cobbley d.appendVarFlag('do_ar_configured', 'depends', ' %s:do_configure' % pn) 139eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_configured' % pn) 14082c905dcSAndrew Geissler elif ar_src == "mirror": 14182c905dcSAndrew Geissler d.appendVarFlag('do_deploy_archives', 'depends', '%s:do_ar_mirror' % pn) 142eb8dc403SDave Cobbley 143eb8dc403SDave Cobbley elif ar_src: 144eb8dc403SDave Cobbley bb.fatal("Invalid ARCHIVER_MODE[src]: %s" % ar_src) 145eb8dc403SDave Cobbley 146eb8dc403SDave Cobbley if ar_dumpdata == "1": 147eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_dumpdata' % pn) 148eb8dc403SDave Cobbley 149eb8dc403SDave Cobbley if ar_recipe == "1": 150eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_recipe' % pn) 151eb8dc403SDave Cobbley 152eb8dc403SDave Cobbley # Output the SRPM package 153eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'srpm') == "1" and d.getVar('PACKAGES'): 15479641f25SBrad Bishop if "package_rpm" not in d.getVar('PACKAGE_CLASSES'): 15579641f25SBrad Bishop bb.fatal("ARCHIVER_MODE[srpm] needs package_rpm in PACKAGE_CLASSES") 15679641f25SBrad Bishop 15779641f25SBrad Bishop # Some recipes do not have any packaging tasks 15879641f25SBrad Bishop if hasTask("do_package_write_rpm"): 159eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_package_write_rpm' % pn) 16019323693SBrad Bishop d.appendVarFlag('do_package_write_rpm', 'dirs', ' ${ARCHIVER_RPMTOPDIR}') 16119323693SBrad Bishop d.appendVarFlag('do_package_write_rpm', 'sstate-inputdirs', ' ${ARCHIVER_RPMTOPDIR}') 16219323693SBrad Bishop d.appendVarFlag('do_package_write_rpm', 'sstate-outputdirs', ' ${DEPLOY_DIR_SRC}') 163eb8dc403SDave Cobbley if ar_dumpdata == "1": 164eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_dumpdata' % pn) 165eb8dc403SDave Cobbley if ar_recipe == "1": 166eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_recipe' % pn) 167eb8dc403SDave Cobbley if ar_src == "original": 168eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_original' % pn) 169eb8dc403SDave Cobbley elif ar_src == "patched": 170eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_patched' % pn) 171eb8dc403SDave Cobbley elif ar_src == "configured": 172eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_configured' % pn) 173eb8dc403SDave Cobbley} 174eb8dc403SDave Cobbley 175c926e17cSAndrew Geissler# Take all the sources for a recipe and put them in WORKDIR/archiver-work/. 176eb8dc403SDave Cobbley# Files in SRC_URI are copied directly, anything that's a directory 177eb8dc403SDave Cobbley# (e.g. git repositories) is "unpacked" and then put into a tarball. 178eb8dc403SDave Cobbleypython do_ar_original() { 179eb8dc403SDave Cobbley 180eb8dc403SDave Cobbley import shutil, tempfile 181eb8dc403SDave Cobbley 182eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') != "original": 183eb8dc403SDave Cobbley return 184eb8dc403SDave Cobbley 185eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 186eb8dc403SDave Cobbley bb.note('Archiving the original source...') 187eb8dc403SDave Cobbley urls = d.getVar("SRC_URI").split() 188eb8dc403SDave Cobbley # destsuffix (git fetcher) and subdir (everything else) are allowed to be 189eb8dc403SDave Cobbley # absolute paths (for example, destsuffix=${S}/foobar). 190eb8dc403SDave Cobbley # That messes with unpacking inside our tmpdir below, because the fetchers 191eb8dc403SDave Cobbley # will then unpack in that directory and completely ignore the tmpdir. 192eb8dc403SDave Cobbley # That breaks parallel tasks relying on ${S}, like do_compile. 193eb8dc403SDave Cobbley # 194eb8dc403SDave Cobbley # To solve this, we remove these parameters from all URLs. 195eb8dc403SDave Cobbley # We do this even for relative paths because it makes the content of the 196eb8dc403SDave Cobbley # archives more useful (no extra paths that are only used during 197eb8dc403SDave Cobbley # compilation). 198eb8dc403SDave Cobbley for i, url in enumerate(urls): 199eb8dc403SDave Cobbley decoded = bb.fetch2.decodeurl(url) 200eb8dc403SDave Cobbley for param in ('destsuffix', 'subdir'): 201eb8dc403SDave Cobbley if param in decoded[5]: 202eb8dc403SDave Cobbley del decoded[5][param] 203eb8dc403SDave Cobbley encoded = bb.fetch2.encodeurl(decoded) 204eb8dc403SDave Cobbley urls[i] = encoded 2051e34c2d0SAndrew Geissler 2061e34c2d0SAndrew Geissler # Cleanup SRC_URI before call bb.fetch2.Fetch() since now SRC_URI is in the 2071e34c2d0SAndrew Geissler # variable "urls", otherwise there might be errors like: 2081e34c2d0SAndrew Geissler # The SRCREV_FORMAT variable must be set when multiple SCMs are used 2091e34c2d0SAndrew Geissler ld = bb.data.createCopy(d) 2101e34c2d0SAndrew Geissler ld.setVar('SRC_URI', '') 2111e34c2d0SAndrew Geissler fetch = bb.fetch2.Fetch(urls, ld) 212eb8dc403SDave Cobbley tarball_suffix = {} 213eb8dc403SDave Cobbley for url in fetch.urls: 214eb8dc403SDave Cobbley local = fetch.localpath(url).rstrip("/"); 215eb8dc403SDave Cobbley if os.path.isfile(local): 216eb8dc403SDave Cobbley shutil.copy(local, ar_outdir) 217eb8dc403SDave Cobbley elif os.path.isdir(local): 218eb8dc403SDave Cobbley tmpdir = tempfile.mkdtemp(dir=d.getVar('ARCHIVER_WORKDIR')) 219eb8dc403SDave Cobbley fetch.unpack(tmpdir, (url,)) 220eb8dc403SDave Cobbley # To handle recipes with more than one source, we add the "name" 221eb8dc403SDave Cobbley # URL parameter as suffix. We treat it as an error when 222eb8dc403SDave Cobbley # there's more than one URL without a name, or a name gets reused. 223eb8dc403SDave Cobbley # This is an additional safety net, in practice the name has 224eb8dc403SDave Cobbley # to be set when using the git fetcher, otherwise SRCREV cannot 225eb8dc403SDave Cobbley # be set separately for each URL. 226eb8dc403SDave Cobbley params = bb.fetch2.decodeurl(url)[5] 227eb8dc403SDave Cobbley type = bb.fetch2.decodeurl(url)[0] 228eb8dc403SDave Cobbley location = bb.fetch2.decodeurl(url)[2] 229eb8dc403SDave Cobbley name = params.get('name', '') 230eb8dc403SDave Cobbley if type.lower() == 'file': 231eb8dc403SDave Cobbley name_tmp = location.rstrip("*").rstrip("/") 232eb8dc403SDave Cobbley name = os.path.basename(name_tmp) 233eb8dc403SDave Cobbley else: 234eb8dc403SDave Cobbley if name in tarball_suffix: 235eb8dc403SDave Cobbley if not name: 236eb8dc403SDave Cobbley bb.fatal("Cannot determine archive names for original source because 'name' URL parameter is unset in more than one URL. Add it to at least one of these: %s %s" % (tarball_suffix[name], url)) 237eb8dc403SDave Cobbley else: 238eb8dc403SDave Cobbley bb.fatal("Cannot determine archive names for original source because 'name=' URL parameter '%s' is used twice. Make it unique in: %s %s" % (tarball_suffix[name], url)) 239eb8dc403SDave Cobbley tarball_suffix[name] = url 240eb8dc403SDave Cobbley create_tarball(d, tmpdir + '/.', name, ar_outdir) 241eb8dc403SDave Cobbley 242eb8dc403SDave Cobbley # Emit patch series files for 'original' 243eb8dc403SDave Cobbley bb.note('Writing patch series files...') 244eb8dc403SDave Cobbley for patch in src_patches(d): 245eb8dc403SDave Cobbley _, _, local, _, _, parm = bb.fetch.decodeurl(patch) 246eb8dc403SDave Cobbley patchdir = parm.get('patchdir') 247eb8dc403SDave Cobbley if patchdir: 248eb8dc403SDave Cobbley series = os.path.join(ar_outdir, 'series.subdir.%s' % patchdir.replace('/', '_')) 249eb8dc403SDave Cobbley else: 250eb8dc403SDave Cobbley series = os.path.join(ar_outdir, 'series') 251eb8dc403SDave Cobbley 252eb8dc403SDave Cobbley with open(series, 'a') as s: 253eb8dc403SDave Cobbley s.write('%s -p%s\n' % (os.path.basename(local), parm['striplevel'])) 254eb8dc403SDave Cobbley} 255eb8dc403SDave Cobbley 256eb8dc403SDave Cobbleypython do_ar_patched() { 257eb8dc403SDave Cobbley 258eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') != 'patched': 259eb8dc403SDave Cobbley return 260eb8dc403SDave Cobbley 261eb8dc403SDave Cobbley # Get the ARCHIVER_OUTDIR before we reset the WORKDIR 262eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 263a34c030eSBrad Bishop if not is_work_shared(d): 264eb8dc403SDave Cobbley ar_workdir = d.getVar('ARCHIVER_WORKDIR') 265eb8dc403SDave Cobbley d.setVar('WORKDIR', ar_workdir) 266a34c030eSBrad Bishop bb.note('Archiving the patched source...') 267eb8dc403SDave Cobbley create_tarball(d, d.getVar('S'), 'patched', ar_outdir) 268eb8dc403SDave Cobbley} 269eb8dc403SDave Cobbley 270eb8dc403SDave Cobbleypython do_ar_configured() { 271eb8dc403SDave Cobbley import shutil 272eb8dc403SDave Cobbley 273eb8dc403SDave Cobbley # Forcibly expand the sysroot paths as we're about to change WORKDIR 274eb8dc403SDave Cobbley d.setVar('STAGING_DIR_HOST', d.getVar('STAGING_DIR_HOST')) 275eb8dc403SDave Cobbley d.setVar('STAGING_DIR_TARGET', d.getVar('STAGING_DIR_TARGET')) 276eb8dc403SDave Cobbley d.setVar('RECIPE_SYSROOT', d.getVar('RECIPE_SYSROOT')) 277eb8dc403SDave Cobbley d.setVar('RECIPE_SYSROOT_NATIVE', d.getVar('RECIPE_SYSROOT_NATIVE')) 278eb8dc403SDave Cobbley 279eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 280eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') == 'configured': 281eb8dc403SDave Cobbley bb.note('Archiving the configured source...') 282eb8dc403SDave Cobbley pn = d.getVar('PN') 283eb8dc403SDave Cobbley # "gcc-source-${PV}" recipes don't have "do_configure" 284eb8dc403SDave Cobbley # task, so we need to run "do_preconfigure" instead 285eb8dc403SDave Cobbley if pn.startswith("gcc-source-"): 286eb8dc403SDave Cobbley d.setVar('WORKDIR', d.getVar('ARCHIVER_WORKDIR')) 287eb8dc403SDave Cobbley bb.build.exec_func('do_preconfigure', d) 288eb8dc403SDave Cobbley 289eb8dc403SDave Cobbley # The libtool-native's do_configure will remove the 290eb8dc403SDave Cobbley # ${STAGING_DATADIR}/aclocal/libtool.m4, so we can't re-run the 291eb8dc403SDave Cobbley # do_configure, we archive the already configured ${S} to 292eb8dc403SDave Cobbley # instead of. 293213cb269SPatrick Williams # The kernel class functions require it to be on work-shared, we 294213cb269SPatrick Williams # don't unpack, patch, configure again, just archive the already 295213cb269SPatrick Williams # configured ${S} 296213cb269SPatrick Williams elif not (pn == 'libtool-native' or is_work_shared(d)): 2971a4b7ee2SBrad Bishop def runTask(task): 2981a4b7ee2SBrad Bishop prefuncs = d.getVarFlag(task, 'prefuncs') or '' 2991a4b7ee2SBrad Bishop for func in prefuncs.split(): 300eb8dc403SDave Cobbley if func != "sysroot_cleansstate": 301eb8dc403SDave Cobbley bb.build.exec_func(func, d) 3021a4b7ee2SBrad Bishop bb.build.exec_func(task, d) 3031a4b7ee2SBrad Bishop postfuncs = d.getVarFlag(task, 'postfuncs') or '' 3041a4b7ee2SBrad Bishop for func in postfuncs.split(): 3051a4b7ee2SBrad Bishop if func != 'do_qa_configure': 306eb8dc403SDave Cobbley bb.build.exec_func(func, d) 3071a4b7ee2SBrad Bishop 3081a4b7ee2SBrad Bishop # Change the WORKDIR to make do_configure run in another dir. 3091a4b7ee2SBrad Bishop d.setVar('WORKDIR', d.getVar('ARCHIVER_WORKDIR')) 3101a4b7ee2SBrad Bishop 3111a4b7ee2SBrad Bishop preceeds = bb.build.preceedtask('do_configure', False, d) 3121a4b7ee2SBrad Bishop for task in preceeds: 3131a4b7ee2SBrad Bishop if task != 'do_patch' and task != 'do_prepare_recipe_sysroot': 3141a4b7ee2SBrad Bishop runTask(task) 3151a4b7ee2SBrad Bishop runTask('do_configure') 3161a4b7ee2SBrad Bishop 317eb8dc403SDave Cobbley srcdir = d.getVar('S') 318eb8dc403SDave Cobbley builddir = d.getVar('B') 319eb8dc403SDave Cobbley if srcdir != builddir: 320eb8dc403SDave Cobbley if os.path.exists(builddir): 321eb8dc403SDave Cobbley oe.path.copytree(builddir, os.path.join(srcdir, \ 322eb8dc403SDave Cobbley 'build.%s.ar_configured' % d.getVar('PF'))) 323eb8dc403SDave Cobbley create_tarball(d, srcdir, 'configured', ar_outdir) 324eb8dc403SDave Cobbley} 325eb8dc403SDave Cobbley 32682c905dcSAndrew Geisslerpython do_ar_mirror() { 32782c905dcSAndrew Geissler import subprocess 32882c905dcSAndrew Geissler 32982c905dcSAndrew Geissler src_uri = (d.getVar('SRC_URI') or '').split() 33082c905dcSAndrew Geissler if len(src_uri) == 0: 33182c905dcSAndrew Geissler return 33282c905dcSAndrew Geissler 33382c905dcSAndrew Geissler dl_dir = d.getVar('DL_DIR') 33482c905dcSAndrew Geissler mirror_exclusions = (d.getVar('ARCHIVER_MIRROR_EXCLUDE') or '').split() 33582c905dcSAndrew Geissler mirror_mode = d.getVarFlag('ARCHIVER_MODE', 'mirror') 33682c905dcSAndrew Geissler have_mirror_tarballs = d.getVar('BB_GENERATE_MIRROR_TARBALLS') 33782c905dcSAndrew Geissler 33882c905dcSAndrew Geissler if mirror_mode == 'combined': 33982c905dcSAndrew Geissler destdir = d.getVar('ARCHIVER_COMBINED_MIRRORDIR') 34082c905dcSAndrew Geissler elif mirror_mode == 'split': 34182c905dcSAndrew Geissler destdir = d.getVar('ARCHIVER_OUTDIR') 34282c905dcSAndrew Geissler else: 34382c905dcSAndrew Geissler bb.fatal('Invalid ARCHIVER_MODE[mirror]: %s' % (mirror_mode)) 34482c905dcSAndrew Geissler 34582c905dcSAndrew Geissler if not have_mirror_tarballs: 34682c905dcSAndrew Geissler bb.fatal('Using `ARCHIVER_MODE[src] = "mirror"` depends on setting `BB_GENERATE_MIRROR_TARBALLS = "1"`') 34782c905dcSAndrew Geissler 34882c905dcSAndrew Geissler def is_excluded(url): 34982c905dcSAndrew Geissler for prefix in mirror_exclusions: 35082c905dcSAndrew Geissler if url.startswith(prefix): 35182c905dcSAndrew Geissler return True 35282c905dcSAndrew Geissler return False 35382c905dcSAndrew Geissler 35482c905dcSAndrew Geissler bb.note('Archiving the source as a mirror...') 35582c905dcSAndrew Geissler 35682c905dcSAndrew Geissler bb.utils.mkdirhier(destdir) 35782c905dcSAndrew Geissler 35882c905dcSAndrew Geissler fetcher = bb.fetch2.Fetch(src_uri, d) 35982c905dcSAndrew Geissler 3605a43b434SAndrew Geissler for ud in fetcher.expanded_urldata(): 3615a43b434SAndrew Geissler if is_excluded(ud.url): 3625a43b434SAndrew Geissler bb.note('Skipping excluded url: %s' % (ud.url)) 36382c905dcSAndrew Geissler continue 36482c905dcSAndrew Geissler 3655a43b434SAndrew Geissler bb.note('Archiving url: %s' % (ud.url)) 36682c905dcSAndrew Geissler ud.setup_localpath(d) 36782c905dcSAndrew Geissler localpath = None 36882c905dcSAndrew Geissler 36982c905dcSAndrew Geissler # Check for mirror tarballs first. We will archive the first mirror 37082c905dcSAndrew Geissler # tarball that we find as it's assumed that we just need one. 37182c905dcSAndrew Geissler for mirror_fname in ud.mirrortarballs: 37282c905dcSAndrew Geissler mirror_path = os.path.join(dl_dir, mirror_fname) 37382c905dcSAndrew Geissler if os.path.exists(mirror_path): 37482c905dcSAndrew Geissler bb.note('Found mirror tarball: %s' % (mirror_path)) 37582c905dcSAndrew Geissler localpath = mirror_path 37682c905dcSAndrew Geissler break 37782c905dcSAndrew Geissler 37882c905dcSAndrew Geissler if len(ud.mirrortarballs) and not localpath: 37982c905dcSAndrew Geissler bb.warn('Mirror tarballs are listed for a source but none are present. ' \ 38082c905dcSAndrew Geissler 'Falling back to original download.\n' \ 3815a43b434SAndrew Geissler 'SRC_URI = %s' % (ud.url)) 38282c905dcSAndrew Geissler 38382c905dcSAndrew Geissler # Check original download 38482c905dcSAndrew Geissler if not localpath: 38582c905dcSAndrew Geissler bb.note('Using original download: %s' % (ud.localpath)) 38682c905dcSAndrew Geissler localpath = ud.localpath 38782c905dcSAndrew Geissler 38882c905dcSAndrew Geissler if not localpath or not os.path.exists(localpath): 38982c905dcSAndrew Geissler bb.fatal('Original download is missing for a source.\n' \ 3905a43b434SAndrew Geissler 'SRC_URI = %s' % (ud.url)) 39182c905dcSAndrew Geissler 39282c905dcSAndrew Geissler # We now have an appropriate localpath 39382c905dcSAndrew Geissler bb.note('Copying source mirror') 39482c905dcSAndrew Geissler cmd = 'cp -fpPRH %s %s' % (localpath, destdir) 39582c905dcSAndrew Geissler subprocess.check_call(cmd, shell=True) 39682c905dcSAndrew Geissler} 39782c905dcSAndrew Geissler 398c4ea075dSBrad Bishopdef exclude_useless_paths(tarinfo): 399c4ea075dSBrad Bishop if tarinfo.isdir(): 400c4ea075dSBrad Bishop if tarinfo.name.endswith('/temp') or tarinfo.name.endswith('/patches') or tarinfo.name.endswith('/.pc'): 401c4ea075dSBrad Bishop return None 402c4ea075dSBrad Bishop elif tarinfo.name == 'temp' or tarinfo.name == 'patches' or tarinfo.name == '.pc': 403c4ea075dSBrad Bishop return None 404c4ea075dSBrad Bishop return tarinfo 405c4ea075dSBrad Bishop 406eb8dc403SDave Cobbleydef create_tarball(d, srcdir, suffix, ar_outdir): 407eb8dc403SDave Cobbley """ 408eb8dc403SDave Cobbley create the tarball from srcdir 409eb8dc403SDave Cobbley """ 410eb8dc403SDave Cobbley import tarfile 411eb8dc403SDave Cobbley 412eb8dc403SDave Cobbley # Make sure we are only creating a single tarball for gcc sources 413eb8dc403SDave Cobbley if (d.getVar('SRC_URI') == ""): 414eb8dc403SDave Cobbley return 415eb8dc403SDave Cobbley 416eb8dc403SDave Cobbley # For the kernel archive, srcdir may just be a link to the 417eb8dc403SDave Cobbley # work-shared location. Use os.path.realpath to make sure 418eb8dc403SDave Cobbley # that we archive the actual directory and not just the link. 419eb8dc403SDave Cobbley srcdir = os.path.realpath(srcdir) 420eb8dc403SDave Cobbley 421eff27476SAndrew Geissler compression_method = d.getVarFlag('ARCHIVER_MODE', 'compression') 422eb8dc403SDave Cobbley bb.utils.mkdirhier(ar_outdir) 423eb8dc403SDave Cobbley if suffix: 424eff27476SAndrew Geissler filename = '%s-%s.tar.%s' % (d.getVar('PF'), suffix, compression_method) 425eb8dc403SDave Cobbley else: 426eff27476SAndrew Geissler filename = '%s.tar.%s' % (d.getVar('PF'), compression_method) 427eb8dc403SDave Cobbley tarname = os.path.join(ar_outdir, filename) 428eb8dc403SDave Cobbley 429eb8dc403SDave Cobbley bb.note('Creating %s' % tarname) 430eff27476SAndrew Geissler tar = tarfile.open(tarname, 'w:%s' % compression_method) 431c4ea075dSBrad Bishop tar.add(srcdir, arcname=os.path.basename(srcdir), filter=exclude_useless_paths) 432eb8dc403SDave Cobbley tar.close() 433eb8dc403SDave Cobbley 434eb8dc403SDave Cobbley# creating .diff.gz between source.orig and source 435eb8dc403SDave Cobbleydef create_diff_gz(d, src_orig, src, ar_outdir): 436eb8dc403SDave Cobbley 437eb8dc403SDave Cobbley import subprocess 438eb8dc403SDave Cobbley 439eb8dc403SDave Cobbley if not os.path.isdir(src) or not os.path.isdir(src_orig): 440eb8dc403SDave Cobbley return 441eb8dc403SDave Cobbley 442eb8dc403SDave Cobbley # The diff --exclude can't exclude the file with path, so we copy 443eb8dc403SDave Cobbley # the patched source, and remove the files that we'd like to 444eb8dc403SDave Cobbley # exclude. 445eb8dc403SDave Cobbley src_patched = src + '.patched' 446eb8dc403SDave Cobbley oe.path.copyhardlinktree(src, src_patched) 447eb8dc403SDave Cobbley for i in d.getVarFlag('ARCHIVER_MODE', 'diff-exclude').split(): 448eb8dc403SDave Cobbley bb.utils.remove(os.path.join(src_orig, i), recurse=True) 449eb8dc403SDave Cobbley bb.utils.remove(os.path.join(src_patched, i), recurse=True) 450eb8dc403SDave Cobbley 451eb8dc403SDave Cobbley dirname = os.path.dirname(src) 452eb8dc403SDave Cobbley basename = os.path.basename(src) 453eb8dc403SDave Cobbley bb.utils.mkdirhier(ar_outdir) 454eb8dc403SDave Cobbley cwd = os.getcwd() 455eb8dc403SDave Cobbley try: 456eb8dc403SDave Cobbley os.chdir(dirname) 457eb8dc403SDave Cobbley out_file = os.path.join(ar_outdir, '%s-diff.gz' % d.getVar('PF')) 458eb8dc403SDave Cobbley diff_cmd = 'diff -Naur %s.orig %s.patched | gzip -c > %s' % (basename, basename, out_file) 459eb8dc403SDave Cobbley subprocess.check_call(diff_cmd, shell=True) 460eb8dc403SDave Cobbley bb.utils.remove(src_patched, recurse=True) 461eb8dc403SDave Cobbley finally: 462eb8dc403SDave Cobbley os.chdir(cwd) 463eb8dc403SDave Cobbley 464eb8dc403SDave Cobbleydef is_work_shared(d): 465eb8dc403SDave Cobbley pn = d.getVar('PN') 466*92b42cb3SPatrick Williams return pn.startswith('gcc-source') or \ 467*92b42cb3SPatrick Williams bb.data.inherits_class('kernel', d) or \ 468*92b42cb3SPatrick Williams (bb.data.inherits_class('kernelsrc', d) and d.getVar('S') == d.getVar('STAGING_KERNEL_DIR')) 469eb8dc403SDave Cobbley 470eb8dc403SDave Cobbley# Run do_unpack and do_patch 471eb8dc403SDave Cobbleypython do_unpack_and_patch() { 472eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') not in \ 473eb8dc403SDave Cobbley [ 'patched', 'configured'] and \ 474eb8dc403SDave Cobbley d.getVarFlag('ARCHIVER_MODE', 'diff') != '1': 475eb8dc403SDave Cobbley return 476eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 477eb8dc403SDave Cobbley ar_workdir = d.getVar('ARCHIVER_WORKDIR') 478eb8dc403SDave Cobbley ar_sysroot_native = d.getVar('STAGING_DIR_NATIVE') 479eb8dc403SDave Cobbley pn = d.getVar('PN') 480eb8dc403SDave Cobbley 481c926e17cSAndrew Geissler # The kernel class functions require it to be on work-shared, so we don't change WORKDIR 482eb8dc403SDave Cobbley if not is_work_shared(d): 483eb8dc403SDave Cobbley # Change the WORKDIR to make do_unpack do_patch run in another dir. 484eb8dc403SDave Cobbley d.setVar('WORKDIR', ar_workdir) 485eb8dc403SDave Cobbley # Restore the original path to recipe's native sysroot (it's relative to WORKDIR). 486eb8dc403SDave Cobbley d.setVar('STAGING_DIR_NATIVE', ar_sysroot_native) 487eb8dc403SDave Cobbley 488eb8dc403SDave Cobbley # The changed 'WORKDIR' also caused 'B' changed, create dir 'B' for the 489eb8dc403SDave Cobbley # possibly requiring of the following tasks (such as some recipes's 490eb8dc403SDave Cobbley # do_patch required 'B' existed). 491eb8dc403SDave Cobbley bb.utils.mkdirhier(d.getVar('B')) 492eb8dc403SDave Cobbley 493eb8dc403SDave Cobbley bb.build.exec_func('do_unpack', d) 494eb8dc403SDave Cobbley 495eb8dc403SDave Cobbley # Save the original source for creating the patches 496eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1': 497eb8dc403SDave Cobbley src = d.getVar('S').rstrip('/') 498eb8dc403SDave Cobbley src_orig = '%s.orig' % src 499eb8dc403SDave Cobbley oe.path.copytree(src, src_orig) 500eb8dc403SDave Cobbley 501213cb269SPatrick Williams if bb.data.inherits_class('dos2unix', d): 502213cb269SPatrick Williams bb.build.exec_func('do_convert_crlf_to_lf', d) 503213cb269SPatrick Williams 504eb8dc403SDave Cobbley # Make sure gcc and kernel sources are patched only once 505eb8dc403SDave Cobbley if not (d.getVar('SRC_URI') == "" or is_work_shared(d)): 506eb8dc403SDave Cobbley bb.build.exec_func('do_patch', d) 507eb8dc403SDave Cobbley 508eb8dc403SDave Cobbley # Create the patches 509eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1': 510eb8dc403SDave Cobbley bb.note('Creating diff gz...') 511eb8dc403SDave Cobbley create_diff_gz(d, src_orig, src, ar_outdir) 512eb8dc403SDave Cobbley bb.utils.remove(src_orig, recurse=True) 513eb8dc403SDave Cobbley} 514eb8dc403SDave Cobbley 515eb8dc403SDave Cobbley# BBINCLUDED is special (excluded from basehash signature 516eb8dc403SDave Cobbley# calculation). Using it in a task signature can cause "basehash 517eb8dc403SDave Cobbley# changed" errors. 518eb8dc403SDave Cobbley# 519eb8dc403SDave Cobbley# Depending on BBINCLUDED also causes do_ar_recipe to run again 520eb8dc403SDave Cobbley# for unrelated changes, like adding or removing buildhistory.bbclass. 521eb8dc403SDave Cobbley# 522eb8dc403SDave Cobbley# For these reasons we ignore the dependency completely. The versioning 523eb8dc403SDave Cobbley# of the output file ensures that we create it each time the recipe 524eb8dc403SDave Cobbley# gets rebuilt, at least as long as a PR server is used. We also rely 525eb8dc403SDave Cobbley# on that mechanism to catch changes in the file content, because the 526c926e17cSAndrew Geissler# file content is not part of the task signature either. 527eb8dc403SDave Cobbleydo_ar_recipe[vardepsexclude] += "BBINCLUDED" 528eb8dc403SDave Cobbleypython do_ar_recipe () { 529eb8dc403SDave Cobbley """ 530eb8dc403SDave Cobbley archive the recipe, including .bb and .inc. 531eb8dc403SDave Cobbley """ 532eb8dc403SDave Cobbley import re 533eb8dc403SDave Cobbley import shutil 534eb8dc403SDave Cobbley 535eb8dc403SDave Cobbley require_re = re.compile( r"require\s+(.+)" ) 536eb8dc403SDave Cobbley include_re = re.compile( r"include\s+(.+)" ) 537eb8dc403SDave Cobbley bbfile = d.getVar('FILE') 538eb8dc403SDave Cobbley outdir = os.path.join(d.getVar('WORKDIR'), \ 539eb8dc403SDave Cobbley '%s-recipe' % d.getVar('PF')) 540eb8dc403SDave Cobbley bb.utils.mkdirhier(outdir) 541eb8dc403SDave Cobbley shutil.copy(bbfile, outdir) 542eb8dc403SDave Cobbley 543eb8dc403SDave Cobbley pn = d.getVar('PN') 544eb8dc403SDave Cobbley bbappend_files = d.getVar('BBINCLUDED').split() 545eb8dc403SDave Cobbley # If recipe name is aa, we need to match files like aa.bbappend and aa_1.1.bbappend 546eb8dc403SDave Cobbley # Files like aa1.bbappend or aa1_1.1.bbappend must be excluded. 547eb8dc403SDave Cobbley bbappend_re = re.compile( r".*/%s_[^/]*\.bbappend$" % re.escape(pn)) 548eb8dc403SDave Cobbley bbappend_re1 = re.compile( r".*/%s\.bbappend$" % re.escape(pn)) 549eb8dc403SDave Cobbley for file in bbappend_files: 550eb8dc403SDave Cobbley if bbappend_re.match(file) or bbappend_re1.match(file): 551eb8dc403SDave Cobbley shutil.copy(file, outdir) 552eb8dc403SDave Cobbley 553eb8dc403SDave Cobbley dirname = os.path.dirname(bbfile) 554eb8dc403SDave Cobbley bbpath = '%s:%s' % (dirname, d.getVar('BBPATH')) 555eb8dc403SDave Cobbley f = open(bbfile, 'r') 556eb8dc403SDave Cobbley for line in f.readlines(): 557eb8dc403SDave Cobbley incfile = None 558eb8dc403SDave Cobbley if require_re.match(line): 559eb8dc403SDave Cobbley incfile = require_re.match(line).group(1) 560eb8dc403SDave Cobbley elif include_re.match(line): 561eb8dc403SDave Cobbley incfile = include_re.match(line).group(1) 562eb8dc403SDave Cobbley if incfile: 563eb8dc403SDave Cobbley incfile = d.expand(incfile) 5641d80a2eaSBrad Bishop if incfile: 565eb8dc403SDave Cobbley incfile = bb.utils.which(bbpath, incfile) 566eb8dc403SDave Cobbley if incfile: 567eb8dc403SDave Cobbley shutil.copy(incfile, outdir) 568eb8dc403SDave Cobbley 569eb8dc403SDave Cobbley create_tarball(d, outdir, 'recipe', d.getVar('ARCHIVER_OUTDIR')) 570eb8dc403SDave Cobbley bb.utils.remove(outdir, recurse=True) 571eb8dc403SDave Cobbley} 572eb8dc403SDave Cobbley 573eb8dc403SDave Cobbleypython do_dumpdata () { 574eb8dc403SDave Cobbley """ 575eb8dc403SDave Cobbley dump environment data to ${PF}-showdata.dump 576eb8dc403SDave Cobbley """ 577eb8dc403SDave Cobbley 578eb8dc403SDave Cobbley dumpfile = os.path.join(d.getVar('ARCHIVER_OUTDIR'), \ 579eb8dc403SDave Cobbley '%s-showdata.dump' % d.getVar('PF')) 580eb8dc403SDave Cobbley bb.note('Dumping metadata into %s' % dumpfile) 581eb8dc403SDave Cobbley with open(dumpfile, "w") as f: 582eb8dc403SDave Cobbley # emit variables and shell functions 583eb8dc403SDave Cobbley bb.data.emit_env(f, d, True) 584eb8dc403SDave Cobbley # emit the metadata which isn't valid shell 585eb8dc403SDave Cobbley for e in d.keys(): 586eb8dc403SDave Cobbley if d.getVarFlag(e, "python", False): 587eb8dc403SDave Cobbley f.write("\npython %s () {\n%s}\n" % (e, d.getVar(e, False))) 588eb8dc403SDave Cobbley} 589eb8dc403SDave Cobbley 590eb8dc403SDave CobbleySSTATETASKS += "do_deploy_archives" 591eb8dc403SDave Cobbleydo_deploy_archives () { 59278b72798SAndrew Geissler bbnote "Deploying source archive files from ${ARCHIVER_TOPDIR} to ${DEPLOY_DIR_SRC}." 593eb8dc403SDave Cobbley} 594eb8dc403SDave Cobbleypython do_deploy_archives_setscene () { 595eb8dc403SDave Cobbley sstate_setscene(d) 596eb8dc403SDave Cobbley} 597eb8dc403SDave Cobbleydo_deploy_archives[dirs] = "${ARCHIVER_TOPDIR}" 598eb8dc403SDave Cobbleydo_deploy_archives[sstate-inputdirs] = "${ARCHIVER_TOPDIR}" 599eb8dc403SDave Cobbleydo_deploy_archives[sstate-outputdirs] = "${DEPLOY_DIR_SRC}" 600eb8dc403SDave Cobbleyaddtask do_deploy_archives_setscene 601eb8dc403SDave Cobbley 602eb8dc403SDave Cobbleyaddtask do_ar_original after do_unpack 603475cb72dSAndrew Geissleraddtask do_unpack_and_patch after do_patch do_preconfigure 604475cb72dSAndrew Geissleraddtask do_ar_patched after do_unpack_and_patch 605eb8dc403SDave Cobbleyaddtask do_ar_configured after do_unpack_and_patch 60682c905dcSAndrew Geissleraddtask do_ar_mirror after do_fetch 607eb8dc403SDave Cobbleyaddtask do_dumpdata 608eb8dc403SDave Cobbleyaddtask do_ar_recipe 6091e34c2d0SAndrew Geissleraddtask do_deploy_archives 6101e34c2d0SAndrew Geisslerdo_build[recrdeptask] += "do_deploy_archives" 611d1e89497SAndrew Geisslerdo_rootfs[recrdeptask] += "do_deploy_archives" 6121e34c2d0SAndrew Geisslerdo_populate_sdk[recrdeptask] += "do_deploy_archives" 613eb8dc403SDave Cobbley 614eb8dc403SDave Cobbleypython () { 615eb8dc403SDave Cobbley # Add tasks in the correct order, specifically for linux-yocto to avoid race condition. 616eb8dc403SDave Cobbley # sstatesig.py:sstate_rundepfilter has special support that excludes this dependency 617eb8dc403SDave Cobbley # so that do_kernel_configme does not need to run again when do_unpack_and_patch 618eb8dc403SDave Cobbley # gets added or removed (by adding or removing archiver.bbclass). 619eb8dc403SDave Cobbley if bb.data.inherits_class('kernel-yocto', d): 620eb8dc403SDave Cobbley bb.build.addtask('do_kernel_configme', 'do_configure', 'do_unpack_and_patch', d) 621eb8dc403SDave Cobbley} 622