summaryrefslogtreecommitdiffstats
path: root/meta-yocto
diff options
context:
space:
mode:
authorXiaofeng Yan <xiaofeng.yan@windriver.com>2012-05-30 17:17:10 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-05 22:54:46 +0100
commitb1f7bb912ff24e6885552ba656bd1bf9e23fa82c (patch)
treeac55ec26de74a624fc99e15372014a6680b5ba10 /meta-yocto
parent0efe773c1752ab28b6cc488da19892d490b5b92b (diff)
downloadpoky-b1f7bb912ff24e6885552ba656bd1bf9e23fa82c.tar.gz
local.conf.sample.extended: Change the usage about arhiver.bbclass
Change the usage about arhiver.bbclass due to the improvement for usability of archiver.bbclass [YOCTO #2472] Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Diffstat (limited to 'meta-yocto')
-rw-r--r--meta-yocto/conf/local.conf.sample.extended31
1 files changed, 18 insertions, 13 deletions
diff --git a/meta-yocto/conf/local.conf.sample.extended b/meta-yocto/conf/local.conf.sample.extended
index b493094773..66b94ad82b 100644
--- a/meta-yocto/conf/local.conf.sample.extended
+++ b/meta-yocto/conf/local.conf.sample.extended
@@ -184,20 +184,25 @@
184 184
185# Archiving source code configuration 185# Archiving source code configuration
186# 186#
187# The following variables control which files to archive and the type to archive to generate. 187# The following variables control which files to archive and
188# There are three basic class defintions of common operations that might be desired and these 188# the type to archive to generate.
189# can be enabled by uncommenting one of the following lines: 189# The content to archive
190# 190# "original": Copy source code package from downloads if existing.
191# INHERIT += "archive-original-source" 191# Archive source code after do_unpack if not found in downloads
192# INHERIT += "archive-patched-source" 192# "patched": Archive source code package after do_patch
193#INHERIT =+ "archive-configured-source" 193# "configured": Archive source code package after do_configure
194# 194# ARCHIVER_MODE[choices] = "none original patched configured"
195# Type of archive: 195# Type of archive:
196# SOURCE_ARCHIVE_PACKAGE_TYPE = 'srpm' 196# ARCHIVER_MODE[type] = "tar srpm"
197#SOURCE_ARCHIVE_PACKAGE_TYPE ?= 'tar'
198#
199# Whether to include WORKDIR/temp, .bb and .inc files: 197# Whether to include WORKDIR/temp, .bb and .inc files:
200# 'logs_with_scripts' include WORKDIR/temp directory and .bb and .inc files 198# 'logs_with_scripts' include WORKDIR/temp directory and .bb and .inc files
201# 'logs' only include WORKDIR/temp 199# 'logs' only include WORKDIR/temp
202# SOURCE_ARCHIVE_LOG_WITH_SCRIPTS ?= 'logs' 200# ARCHIVER_MODE[log_type] = "logs logs_with_scripts"
203#SOURCE_ARCHIVE_LOG_WITH_SCRIPTS ?= 'logs_with_scripts' 201# There are three basic class defintions of common operations
202# that might be desired and these can be enabled by
203# uncommenting five of the following lines:
204#ARCHIVER_MODE ?= "original"
205#ARCHIVER_MODE[type] ?= "tar"
206#ARCHIVER_MODE[log_type] ?= "logs_with_scripts"
207#ARCHIVER_CLASS = "${@'archive-${ARCHIVER_MODE}-source' if ARCHIVER_MODE != 'none' else ''}"
208#INHERIT += "${ARCHIVER_CLASS}"