]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commit
devtool: finish/update-recipe: restrict mode srcrev to recipes fetched from SCM
authorJulien Stephan <jstephan@baylibre.com>
Wed, 22 Nov 2023 11:08:14 +0000 (12:08 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 1 Dec 2023 11:48:13 +0000 (11:48 +0000)
commit5b77f60e85d07921ae5e808daa1fd7d8c3dc40ea
tree685f3fdde4980dd8dcc19785766e501aca282684
parent2914e6a912c9aa014a05015c3401675d10c0f13b
devtool: finish/update-recipe: restrict mode srcrev to recipes fetched from SCM

When specifying --mode / -m srcrev with devtool finish/update-recipe on
recipes that are not fetched from a SCM repository we get the following
error:

  Traceback (most recent call last):
  [..]
    File "<...>/poky/meta/lib/oe/patch.py", line 49, in runcmd
    raise CmdError(cmd, exitstatus >> 8, "stdout: %s\nstderr: %s" % (stdout, stderr))
oe.patch.CmdError: Command Error: 'sh -c 'git format-patch --no-signature --no-numbered INVALID -o /tmp/oepatchbj7pfmzj -- .'' exited with 0  Output:
stdout:
stderr: fatal: bad revision 'INVALID'

Fix this by adding a check and abort with a proper error message.

Signed-off-by: Julien Stephan <jstephan@baylibre.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/devtool/standard.py