summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2013-04-27 05:32:07 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-09 10:53:54 +0100
commit2b9f62bf4383570514c622f84ad2268a882d5045 (patch)
tree3319ce56afeff873e0b6cfe66401385ddb9e7248 /meta/classes
parent63319a2091c3f3ad2c16e7aa803e0ed8668ae397 (diff)
downloadpoky-2b9f62bf4383570514c622f84ad2268a882d5045.tar.gz
sstate.bbclass: make hard links for staging files
Make hard links for staging files instead of copy to save the disk space (3G will be saved for a core-image-sato build), and it doesn't affect much on the build time. The following directories are affected: 1) The sysroot 2) The DEPLOY_DIR 3) The pkgdata [YOCTO #4372] (From OE-Core master rev: 5853e0f482b22258c909268fe71673a29e31989b) (From OE-Core rev: 729439d3b00bab2d061bbc9d5d7a375eb014b192) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 67ddc466ce..0358d14e9a 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -198,7 +198,7 @@ def sstate_install(ss, d):
198 # Run the actual file install 198 # Run the actual file install
199 for state in ss['dirs']: 199 for state in ss['dirs']:
200 if os.path.exists(state[1]): 200 if os.path.exists(state[1]):
201 oe.path.copytree(state[1], state[2]) 201 oe.path.copyhardlinktree(state[1], state[2])
202 202
203 for postinst in (d.getVar('SSTATEPOSTINSTFUNCS', True) or '').split(): 203 for postinst in (d.getVar('SSTATEPOSTINSTFUNCS', True) or '').split():
204 bb.build.exec_func(postinst, d) 204 bb.build.exec_func(postinst, d)