diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-28 09:31:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-28 09:31:19 +0100 |
commit | cb3a2cfd07f016453e42989ec66044a1aa50af12 (patch) | |
tree | 20961a44b74573eb3ce813638511707eb46c74b5 | |
parent | 38a18c9d52b2f0276445b3f8be7dbf464f5b64c7 (diff) | |
download | openembedded-core-cb3a2cfd07f016453e42989ec66044a1aa50af12.tar.gz openembedded-core-cb3a2cfd07f016453e42989ec66044a1aa50af12.tar.bz2 openembedded-core-cb3a2cfd07f016453e42989ec66044a1aa50af12.zip |
local.conf.sample.extended: Add documentation of archive source code configuration
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/local.conf.sample.extended | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/conf/local.conf.sample.extended b/meta/conf/local.conf.sample.extended index f0d1ba85f8..1f84ac7c4f 100644 --- a/meta/conf/local.conf.sample.extended +++ b/meta/conf/local.conf.sample.extended @@ -143,3 +143,24 @@ # commercial_libomxil \ # commercial_mpeg2dec \ # commercial_qmmp" + + +# Archiving source code configuration +# +# The following variables control which files to archive and the type to archive to generate. +# There are three basic class defintions of common operations that might be desired and these +# can be enabled by uncommenting one of the following lines: +# +# INHERIT += "archive-original-source" +# INHERIT += "archive-patched-source" +#INHERIT =+ "archive-configured-source" +# +# Type of archive: +# SOURCE_ARCHIVE_PACKAGE_TYPE = 'srpm' +#SOURCE_ARCHIVE_PACKAGE_TYPE ?= 'tar' +# +# Whether to include WORKDIR/temp, .bb and .inc files: +# 'logs_with_scripts' include WORKDIR/temp directory and .bb and .inc files +# 'logs' only include WORKDIR/temp +# SOURCE_ARCHIVE_LOG_WITH_SCRIPTS ?= 'logs' +#SOURCE_ARCHIVE_LOG_WITH_SCRIPTS ?= 'logs_with_scripts' |