mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
devtool: deploy: provide max_process to strip_execs
Use oe.utils.get_bb_number_threads to get max_process (From OE-Core rev: 162607e3f7fd490c4b01775a9516a1bcf643eae6) Signed-off-by: Clay Chang <clayc@hpe.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit f0056dca0a44c374f1f0c5fccbf66ae88e0b1850) Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
c6def80c31
commit
090c0e8445
@@ -140,6 +140,7 @@ def deploy(args, config, basepath, workspace):
|
||||
import math
|
||||
import oe.recipeutils
|
||||
import oe.package
|
||||
import oe.utils
|
||||
|
||||
check_workspace_recipe(workspace, args.recipename, checksrc=False)
|
||||
|
||||
@@ -174,7 +175,7 @@ def deploy(args, config, basepath, workspace):
|
||||
exec_fakeroot(rd, "cp -af %s %s" % (os.path.join(srcdir, '.'), recipe_outdir), shell=True)
|
||||
os.environ['PATH'] = ':'.join([os.environ['PATH'], rd.getVar('PATH') or ''])
|
||||
oe.package.strip_execs(args.recipename, recipe_outdir, rd.getVar('STRIP'), rd.getVar('libdir'),
|
||||
rd.getVar('base_libdir'), rd)
|
||||
rd.getVar('base_libdir'), oe.utils.get_bb_number_threads(rd), rd)
|
||||
|
||||
filelist = []
|
||||
inodes = set({})
|
||||
|
||||
Reference in New Issue
Block a user