]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
local.conf.sample.extended: Add documentation of archive source code configuration
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 28 Mar 2012 08:31:19 +0000 (09:31 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 28 Mar 2012 09:10:47 +0000 (10:10 +0100)
(From OE-Core rev: cb3a2cfd07f016453e42989ec66044a1aa50af12)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta-yocto/conf/local.conf.sample.extended

index 9c5b974b93e65f875840394eb4263ed949195083..b4930947735b3c632b9db59d7603314ba9590785 100644 (file)
 # when the disk space reduces 50M (or the amount of inode reduces 5k).
 #BB_DISKMON_WARNINTERVAL = "50M,5K"
 
+# 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'