From: Koen Kooi Date: Wed, 5 May 2010 11:05:50 +0000 (+0200) Subject: angstrom: add TARGET_SYS to /etc/angstrom-version X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf55ad281a61a4e201c1bc0c388becbfda72709e;p=openembedded.git angstrom: add TARGET_SYS to /etc/angstrom-version --- diff --git a/recipes/angstrom/angstrom-version.bb b/recipes/angstrom/angstrom-version.bb index 6f1043cec0..1728c0dff8 100644 --- a/recipes/angstrom/angstrom-version.bb +++ b/recipes/angstrom/angstrom-version.bb @@ -1,7 +1,7 @@ LICENSE = "MIT" PV = "${DISTRO_VERSION}" -PR = "r2" +PR = "r3" PE = "1" PACKAGES = "${PN}" @@ -9,10 +9,12 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" export METADATA_REVISION export METADATA_BRANCH +export TARGET_SYS do_install() { mkdir -p ${D}${sysconfdir} echo "Angstrom ${DISTRO_VERSION}" > ${D}${sysconfdir}/angstrom-version echo "Built from branch: ${METADATA_BRANCH}" >> ${D}${sysconfdir}/angstrom-version echo "Revision: ${METADATA_REVISION}" >> ${D}${sysconfdir}/angstrom-version + echo "Target system: ${TARGET_SYS}" >> ${D}${sysconfdir}/angstrom-version }