mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 05:39:39 +01:00
package.bbclass: Fixup for using common function
We may as well use the common function for this rather than duplicating the code. (From OE-Core rev: 20979854c52607212c16e0b01cf610c80d8b524e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -928,13 +928,7 @@ python split_and_strip_files () {
|
||||
for f in kernmods:
|
||||
sfiles.append((f, 16, strip))
|
||||
|
||||
|
||||
import multiprocessing
|
||||
nproc = multiprocessing.cpu_count()
|
||||
pool = bb.utils.multiprocessingpool(nproc)
|
||||
processed = list(pool.imap(oe.package.runstrip, sfiles))
|
||||
pool.close()
|
||||
pool.join()
|
||||
oe.utils.multiprocess_exec(sfiles, oe.package.runstrip)
|
||||
|
||||
#
|
||||
# End of strip
|
||||
@@ -1311,12 +1305,7 @@ python package_do_filedeps() {
|
||||
for files in chunks(pkgfiles[pkg], 100):
|
||||
pkglist.append((pkg, files, rpmdeps, pkgdest))
|
||||
|
||||
import multiprocessing
|
||||
nproc = multiprocessing.cpu_count()
|
||||
pool = bb.utils.multiprocessingpool(nproc)
|
||||
processed = list(pool.imap(oe.package.filedeprunner, pkglist))
|
||||
pool.close()
|
||||
pool.join()
|
||||
processed = oe.utils.multiprocess_exec( pkglist, oe.package.filedeprunner)
|
||||
|
||||
provides_files = {}
|
||||
requires_files = {}
|
||||
|
||||
Reference in New Issue
Block a user