summaryrefslogtreecommitdiffstats
path: root/meta-yocto
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-28 09:31:19 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-28 10:10:47 +0100
commit0ba97b4274d576196c77668981065d1b8fe74f45 (patch)
treecf6a0ec4f8c2c1c1c87b751ded70a0301c467a37 /meta-yocto
parent2f2ea4a42a7b3b55345e470e454b1136c544d26f (diff)
downloadpoky-0ba97b4274d576196c77668981065d1b8fe74f45.tar.gz
local.conf.sample.extended: Add documentation of archive source code configuration
(From OE-Core rev: cb3a2cfd07f016453e42989ec66044a1aa50af12) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r--meta-yocto/conf/local.conf.sample.extended19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-yocto/conf/local.conf.sample.extended b/meta-yocto/conf/local.conf.sample.extended
index 9c5b974b93..b493094773 100644
--- a/meta-yocto/conf/local.conf.sample.extended
+++ b/meta-yocto/conf/local.conf.sample.extended
@@ -182,3 +182,22 @@
182# when the disk space reduces 50M (or the amount of inode reduces 5k). 182# when the disk space reduces 50M (or the amount of inode reduces 5k).
183#BB_DISKMON_WARNINTERVAL = "50M,5K" 183#BB_DISKMON_WARNINTERVAL = "50M,5K"
184 184
185# Archiving source code configuration
186#
187# The following variables control which files to archive and the type to archive to generate.
188# There are three basic class defintions of common operations that might be desired and these
189# can be enabled by uncommenting one of the following lines:
190#
191# INHERIT += "archive-original-source"
192# INHERIT += "archive-patched-source"
193#INHERIT =+ "archive-configured-source"
194#
195# Type of archive:
196# SOURCE_ARCHIVE_PACKAGE_TYPE = 'srpm'
197#SOURCE_ARCHIVE_PACKAGE_TYPE ?= 'tar'
198#
199# Whether to include WORKDIR/temp, .bb and .inc files:
200# 'logs_with_scripts' include WORKDIR/temp directory and .bb and .inc files
201# 'logs' only include WORKDIR/temp
202# SOURCE_ARCHIVE_LOG_WITH_SCRIPTS ?= 'logs'
203#SOURCE_ARCHIVE_LOG_WITH_SCRIPTS ?= 'logs_with_scripts'