Operators

Rethink usage of += and similar in local.conf. Example:

SRC_URI_append

When multiple .bbappends adds patches, order of patching is wrong.

poky/meta/classes/patch.bbclass

def src_patches(d, all=False, expand=True):
    import oe.patch
    return oe.patch.src_patches(d, all, expand)

poky/meta/lib/oe/patch.py

def src_patches(d, all=False, expand=True):
    fetch = bb.fetch2.Fetch([], d)
    patches = []
    sources = []
    for url in fetch.urls:
        local = patch_path(url, fetch, workdir, expand)
        if not local:
            if all:
                local = fetch.localpath(url)
                sources.append(local)
            continue
...
        localurl = bb.fetch.encodeurl(('file', '', local, '', '', patchparm))
        patches.append(localurl)
 
    if all:
        return sources
 
    return patches