diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2015-04-23 15:41:04 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-29 15:15:47 +0100 |
commit | 640e57b423e5a8f0e4572eac985f87139780f247 (patch) | |
tree | 46de688a667e286d5173f4d94db801269bdb2300 /meta | |
parent | c94cf6e6e8a0645c822a708a432901dcb5ce5bf4 (diff) | |
download | openembedded-core-640e57b423e5a8f0e4572eac985f87139780f247.tar.gz openembedded-core-640e57b423e5a8f0e4572eac985f87139780f247.tar.bz2 openembedded-core-640e57b423e5a8f0e4572eac985f87139780f247.zip |
oe.patch.GitApplyTree: add paths argument to extractPatches
Makes it possible to define which paths are included in the patches.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/patch.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index 7441214006..2bf501e9e6 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py @@ -337,12 +337,15 @@ class GitApplyTree(PatchTree): return (tmpfile, cmd) @staticmethod - def extractPatches(tree, startcommit, outdir): + def extractPatches(tree, startcommit, outdir, paths=None): import tempfile import shutil tempdir = tempfile.mkdtemp(prefix='oepatch') try: shellcmd = ["git", "format-patch", startcommit, "-o", tempdir] + if paths: + shellcmd.append('--') + shellcmd.extend(paths) out = runcmd(["sh", "-c", " ".join(shellcmd)], tree) if out: for srcfile in out.split(): |