diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-16 15:35:53 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-19 15:18:05 +0000 |
commit | 05075cf3138d1c61f5cf4fe0e1a4587acc00c692 (patch) | |
tree | b8ee7cb27c0f4490bd31a7e0d20425e978ea1ef2 /meta/conf | |
parent | 1e9c9d164f8d12c8de205e04bf7c1dae3660f12a (diff) | |
download | openembedded-core-05075cf3138d1c61f5cf4fe0e1a4587acc00c692.tar.gz openembedded-core-05075cf3138d1c61f5cf4fe0e1a4587acc00c692.tar.bz2 openembedded-core-05075cf3138d1c61f5cf4fe0e1a4587acc00c692.zip |
bitbake.conf/sanity: Separate versions and PN stamp components into separate directories for WORKDIR and STAMP
This means some of the hacks we have to tell where the package name ends and
the version starts in the directory layout becomes obsolete, simplifying the
work of some of the cleanup scripts. It also makes the layout slightly more
intuitive to the user.
It does force a rebuild onto the user but it will reuse sstate successfully.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/abi_version.conf | 2 | ||||
-rw-r--r-- | meta/conf/bitbake.conf | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/conf/abi_version.conf b/meta/conf/abi_version.conf index 83b668a2a2..e8cf9a3127 100644 --- a/meta/conf/abi_version.conf +++ b/meta/conf/abi_version.conf @@ -4,4 +4,4 @@ # that breaks the format and have been previously discussed on the mailing list # with general agreement from the core team. # -OELAYOUT_ABI = "8" +OELAYOUT_ABI = "9" diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index cf779a4f3d..450a0ee1e9 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -337,9 +337,9 @@ GITDIR = "${CO_DIR}/git2" BZRDIR = "${CO_DIR}/bzr" HGDIR = "${CO_DIR}/hg" -STAMP = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-${EXTENDPE}${PV}-${PR}" -STAMPCLEAN = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-[0-9]*-*" -WORKDIR = "${TMPDIR}/work/${MULTIMACH_TARGET_SYS}/${PF}" +STAMP = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}/${EXTENDPE}${PV}-${PR}" +STAMPCLEAN = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}/*-*" +WORKDIR = "${TMPDIR}/work/${MULTIMACH_TARGET_SYS}/${PN}/${EXTENDPE}${PV}-${PR}" T = "${WORKDIR}/temp" D = "${WORKDIR}/image" S = "${WORKDIR}/${BP}" |