diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/meta/meta-toolchain.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/packages/meta/meta-toolchain.bb b/meta/packages/meta/meta-toolchain.bb index fb213b88b5..525d090916 100644 --- a/meta/packages/meta/meta-toolchain.bb +++ b/meta/packages/meta/meta-toolchain.bb | |||
@@ -123,6 +123,14 @@ do_populate_sdk() { | |||
123 | echo 'export PKG_CONFIG_PATH=${prefix}/${TARGET_SYS}/lib/pkgconfig' >> $script | 123 | echo 'export PKG_CONFIG_PATH=${prefix}/${TARGET_SYS}/lib/pkgconfig' >> $script |
124 | echo 'export CONFIG_SITE=${prefix}/site-config' >> $script | 124 | echo 'export CONFIG_SITE=${prefix}/site-config' >> $script |
125 | 125 | ||
126 | # Add version information | ||
127 | versionfile=${SDK_OUTPUT}/${prefix}/version | ||
128 | touch $versionfile | ||
129 | echo 'Distro: ${DISTRO}' >> $versionfile | ||
130 | echo 'Distro Version: ${DISTRO_VERSION}' >> $versionfile | ||
131 | echo 'Metadata Revision: ${METADATA_REVISION}' >> $versionfile | ||
132 | echo 'Timestamp: ${DATETIME}' >> $versionfile | ||
133 | |||
126 | # Package it up | 134 | # Package it up |
127 | mkdir -p ${SDK_DEPLOY} | 135 | mkdir -p ${SDK_DEPLOY} |
128 | cd ${SDK_OUTPUT} | 136 | cd ${SDK_OUTPUT} |