diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-09-26 15:56:05 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-12-18 23:48:20 -0800 |
commit | 084d16cd00365ac3db9010a2e0e08ec49b50a144 (patch) | |
tree | 1de295a5dde1897bb272e6aa2b6c0f22775c142a /meta/conf/bitbake.conf | |
parent | a78d2d21fffd646a0d6e0f02a8355be010a7bd28 (diff) | |
download | openembedded-core-084d16cd00365ac3db9010a2e0e08ec49b50a144.tar.gz openembedded-core-084d16cd00365ac3db9010a2e0e08ec49b50a144.tar.bz2 openembedded-core-084d16cd00365ac3db9010a2e0e08ec49b50a144.zip |
bitbake.conf: exclude DATETIME var dependency from IMAGE_NAME
* resolves ERROR shown when bitbake -S is used for image:
ERROR: Bitbake's cached basehash does not match the one we just generated
(/OE/oe-core/openembedded-core/meta/recipes-core/images/core-image-minimal.bb.do_rootfs)!
ERROR: The mismatched hashes were 8c35cdf8a5d09c03941f081dd9f6d8dc and b5d6e2e5952770557c48c5779ddb73fc
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index be3bfc2092..578c29f46c 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -407,6 +407,7 @@ STAGING_KERNEL_DIR = "${STAGING_DIR_HOST}/usr/src/kernel" IMAGE_ROOTFS = "${WORKDIR}/rootfs" IMAGE_BASENAME = "${PN}" IMAGE_NAME = "${IMAGE_BASENAME}-${MACHINE}-${DATETIME}" +IMAGE_NAME[vardepsexclude] += "DATETIME" IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}" # This option allows for a percentage overage of the actual image size rather than a |