From: Scott Rifenbark Date: Tue, 8 Feb 2011 18:23:54 +0000 (-0600) Subject: documentation/yocto-project-qs/yocto-project-qs.xml: [BUGID# 631] - Added tip for... X-Git-Tag: 2011-1~2354^2~4 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f8c5a63a25f55a6c25420f131553b512eb3f3228;p=openembedded-core.git documentation/yocto-project-qs/yocto-project-qs.xml: [BUGID# 631] - Added tip for saving disk space during a build. [BUGID# 631] - I added a tip in the section where we show a sample build. The tip says that you can add 'INHERIT += "rm_work"' to the local.conf file to help conserve disk space during a build. Signed-off-by: Scott Rifenbark --- diff --git a/documentation/yocto-project-qs/yocto-project-qs.xml b/documentation/yocto-project-qs/yocto-project-qs.xml index 24480bc787..56dafe5e0a 100644 --- a/documentation/yocto-project-qs/yocto-project-qs.xml +++ b/documentation/yocto-project-qs/yocto-project-qs.xml @@ -234,6 +234,17 @@ $ source poky-laverne-4.0/poky-init-build-env poky-4.0-build + + + To help conserve disk space during builds you can add the following statement + to your local.conf file. + Adding this statement deletes the work directory used for building a package + once the package is built. + + INHERIT += "rm_work" + + + The first two commands extract the Yocto Project files from the release tarball and place them into a subdirectory of your current directory.