diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-06-29 20:21:16 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-06-29 20:21:16 +0200 |
commit | e8f2aecd6e6f9ee388d7c601896ad7b3d1ca87ce (patch) | |
tree | 8a7fcf2319985cf4d44a1841722b76cc8b2462c8 /scripts/run-yocto-check-layer-all-layers.sh | |
parent | 2a0d3a9ce6a31694118f1ac1f5c539eadfbb9cfe (diff) |
Remove use of AGL_APP_REVISION
We did use the variable AGL_APP_REVISION to change between the HEAD of the branch
via to the fixed tag at release time (regs/tags/xyz) .
While this worked well previously, it turns out that bitbake will query git every time
it runs for either or tags likewise. For tags it cannot trust whatever is known locally
is actually the latest tags as there can be force pushed tags.
To fix this we use a well-defined SRCREV for apps/* in the same way
as we do it for src/* .
Bug-AGL: SPEC-4455
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I97fc125d40b36b7ac5e069018a8973384f61d0b7
Diffstat (limited to 'scripts/run-yocto-check-layer-all-layers.sh')
-rwxr-xr-x | scripts/run-yocto-check-layer-all-layers.sh | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/run-yocto-check-layer-all-layers.sh b/scripts/run-yocto-check-layer-all-layers.sh index d5c1423d7..08db5d126 100755 --- a/scripts/run-yocto-check-layer-all-layers.sh +++ b/scripts/run-yocto-check-layer-all-layers.sh @@ -20,7 +20,7 @@ AGL_EXTRA_IMAGE_FSTYPES ?= "" # important settings imported from poky-agl.conf # we do not import -DISTRO_FEATURES:append = " systemd smack" +DISTRO_FEATURES:append = " systemd" DISTRO_FEATURES_BACKFILL_CONSIDERED:append = " sysvinit" VIRTUAL-RUNTIME_init_manager = "systemd" #AGL_FEATURES += "aglcore agldemo" @@ -29,13 +29,6 @@ VIRTUAL-RUNTIME_init_manager = "systemd" # workaround: #ERROR: Nothing RPROVIDES 'qtwebengine-qmlplugins' (but /home/dl9pf/AGL/master-newlayout/external/meta-qt5/recipes-qt/qt5/qt5-creator_git.bb RDEPENDS on or otherwise requires it) BBMASK += "meta-qt5/recipes-qt/qt5/qt5-creator_git.bb" -#ERROR: Nothing RPROVIDES 'python' (but /home/dl9pf/AGL/master-newlayout/external/meta-security/recipes-mac/smack/smack-test_1.0.bb RDEPENDS on or otherwise requires it) -BBMASK += "meta-security/recipes-mac/smack/smack-test_1.0.bb" - -# missing in upstream recipes ... aka FIXME upstream -BBCLASSEXTEND:pn-libzip = "native nativesdk" -BBCLASSEXTEND:pn-xmlsec1 = "native nativesdk" -AGL_APP_REVISION = "${AUTOREV}" EOF |