aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--classes/openmoko2.bbclass11
1 files changed, 9 insertions, 2 deletions
diff --git a/classes/openmoko2.bbclass b/classes/openmoko2.bbclass
index 4675b6a10e..150448a2e5 100644
--- a/classes/openmoko2.bbclass
+++ b/classes/openmoko2.bbclass
@@ -19,10 +19,17 @@ def openmoko_two_get_subdir(d):
elif section == "inputmethods": return "inputmethods"
else: return section
+def openmoko_strip_two(d):
+ import bb
+ pname, openmokonumber = bb.data.getVar('PN', d, 1).split("2")
+ return pname
+
+
LICENSE = "${@openmoko_two_get_license(d)}"
SUBDIR = "${@openmoko_two_get_subdir(d)}"
+PNAME = "${@openmoko_strip_two(d)}"
-SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http"
-S = "${WORKDIR}/${PN}"
+SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PNAME};proto=http"
+S = "${WORKDIR}/${PNAME}"
FILES_${PN} += "${datadir}/icons"