diff options
author | Alexandre Truong <alexandre.truong@smile.fr> | 2024-07-31 10:42:44 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-08-09 14:25:09 -0700 |
commit | b61e248091aa4d2ec5fbdc14f6185354e9ef6b3a (patch) | |
tree | 2af648f73413d17aaa6dfdef875205f144ff12f2 | |
parent | 990e29ea30ad475b1908b814c49f6f6d806f0227 (diff) | |
download | meta-openembedded-b61e248091aa4d2ec5fbdc14f6185354e9ef6b3a.tar.gz |
libubox: include UPSTREAM_CHECK_COMMITS to fix UNKNOWN_BROKEN status
When performing devtool check-upgrade-status, UNKNOWN_BROKEN status appears.
On the upstream source repository, releases are not identified by tags. So,
UPSTREAM_CHECK_COMMITS is set to 1, to find the latest upstream update.
Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr>
Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/libubox/libubox_git.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/libubox/libubox_git.bb b/meta-oe/recipes-devtools/libubox/libubox_git.bb index 39e18cdafd..131929b30e 100644 --- a/meta-oe/recipes-devtools/libubox/libubox_git.bb +++ b/meta-oe/recipes-devtools/libubox/libubox_git.bb | |||
@@ -22,6 +22,9 @@ SRC_URI = "\ | |||
22 | SRCREV = "07413cce72e19520af55dfcbc765484f5ab41dd9" | 22 | SRCREV = "07413cce72e19520af55dfcbc765484f5ab41dd9" |
23 | PV = "1.0.1+git" | 23 | PV = "1.0.1+git" |
24 | 24 | ||
25 | # Upstream repo does not tag | ||
26 | UPSTREAM_CHECK_COMMITS = "1" | ||
27 | |||
25 | S = "${WORKDIR}/git" | 28 | S = "${WORKDIR}/git" |
26 | 29 | ||
27 | inherit cmake pkgconfig | 30 | inherit cmake pkgconfig |