BUILD-INFO-OPENSTLINUX: avoid to use sstate-cache

When the same cache is used on different build, bitbake
complains with following
bitbake build-info-openstlinux -cdo_install -Snone
bitbake build-info-openstlinux -cdo_install -Sprintdiff

So do not use the cache and force the build everytime.

Signed-off-by: Lionel VITTE <lionel.vitte@st.com>
Change-Id: I9f0d2bca5a6395f20c7b140c066b1aa5ee944a81
This commit is contained in:
Christophe Priouzeau
2022-06-08 16:57:17 +02:00
committed by bernard PUEL
parent d1a5be409e
commit 182b150c45

View File

@ -14,7 +14,5 @@ IMAGE_BUILDINFO_VARS = "${BUILDCFG_VARS}"
IMAGE_ROOTFS = "${D}"
# Generate build info file
do_install[postfuncs] += "buildinfo"
# Add specific var dependency to keep generating new build info file for any
# var update
do_install[vardeps] += "${IMAGE_BUILDINFO_VARS}"
do_packagedata_setscene[vardeps] += "${IMAGE_BUILDINFO_VARS}"
# Always rebuild that recipe to avoid cache issue
do_install[nostamp] = "1"