summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin@buglabs.net>2009-02-20 17:23:36 +0100
committerMarcin Juszkiewicz <marcin@buglabs.net>2009-02-20 17:23:36 +0100
commit7c1b438d4012ee43c5378b8b73a30e557aa60075 (patch)
treeec997f37adf6caa0df310ebcc74840282dc7cb53 /meta/conf/bitbake.conf
parentd1e8a463a3dbbd7b9e2e60759e30a28264e90f42 (diff)
downloadpoky-7c1b438d4012ee43c5378b8b73a30e557aa60075.tar.gz
base.bbclass, bitbake.conf: add support for BP/BPN variables (backported from trunk)
commit 94c895aad5ad286f172b04bc33ba670220d5eba8 Author: Richard Purdie <rpurdie@linux.intel.com> Date: Fri Jan 2 10:15:45 2009 +0000 bitbake.conf: Create BPN variable containing the pruned version of PN with various suffixes removed and use this for S and FILESPATH. This uses naming from OE but with improved code
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf9
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index c8f4b8dfe2..dc3352bf54 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -135,6 +135,13 @@ EXTENDPEVER = "${@['','${PE\x7d:'][bb.data.getVar('PE',d,1) > 0]}"
135DEBPV = "${EXTENDPEVER}${PV}-${PR}" 135DEBPV = "${EXTENDPEVER}${PV}-${PR}"
136P = "${PN}-${PV}" 136P = "${PN}-${PV}"
137 137
138# Base package name
139# Automatically derives "foo" from "foo-native", "foo-cross" or "foo-initial"
140# otherwise it is the same as PN and P
141SPECIAL_PKGSUFFIX = "-native -cross-sdk -cross -sdk -initial -intermediate"
142BPN = "${@base_prune_suffix(bb.data.getVar('PN', d, True), bb.data.getVar('SPECIAL_PKGSUFFIX', d, True).split(), d)}"
143BP = "${BPN}-${PV}"
144
138# Package info. 145# Package info.
139 146
140SECTION = "base" 147SECTION = "base"
@@ -217,7 +224,7 @@ STAMP = "${TMPDIR}/stamps/${PF}"
217WORKDIR = "${TMPDIR}/work/${PF}" 224WORKDIR = "${TMPDIR}/work/${PF}"
218T = "${WORKDIR}/temp" 225T = "${WORKDIR}/temp"
219D = "${WORKDIR}/image" 226D = "${WORKDIR}/image"
220S = "${WORKDIR}/${P}" 227S = "${WORKDIR}/${BP}"
221B = "${S}" 228B = "${S}"
222 229
223STAGING_DIR = "${TMPDIR}/staging" 230STAGING_DIR = "${TMPDIR}/staging"