Lines Matching +full:stdout +full:- +full:path
6 PATCHDEPENDENCY = "${PATCHTOOL}-native:do_populate_sysroot"
13 PATCHDEPENDENCY:append:class-target = " patch-replacement-native:do_populate_sysroot"
38 workdir = os.path.abspath(d.getVar('WORKDIR'))
39 testsrcdir = os.path.abspath(srcsubdir)
41 # Double-check that either workdir or S or some directory in-between is a git repository
44 if os.path.exists(os.path.join(testsrcdir, '.git')):
49 testsrcdir = os.path.dirname(testsrcdir)
53 patchdir = os.path.join(srcsubdir, 'patches')
54 if os.path.exists(patchdir):
68 if os.path.exists(srcsubdir):
71 patchdir = os.path.join(srcsubdir, 'patches')
72 if os.path.exists(patchdir):
75 stdout, _ = bb.process.run('git status --porcelain patches', cwd=srcsubdir)
76 if stdout:
78 stdout, _ = bb.process.run('git status --porcelain .', cwd=srcsubdir)
79 if stdout:
82 … git %s commit -a -m "Committing changes from %s\n\n%s"' % (' '.join(useroptions), func, oe.patch.…
118 os.putenv('PATH', d.getVar('PATH'))
132 if not os.path.isabs(patchdir):
133 patchdir = os.path.join(s, patchdir)
134 if not os.path.isdir(patchdir):
148 bb.note("Applying patch '%s' (%s)" % (parm['patchname'], oe.path.format_display(local, d)))