summaryrefslogtreecommitdiffstats
path: root/test/common.sh
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2020-01-27 07:59:46 +0100
committerTom Rini <trini@konsulko.com>2020-01-30 13:30:35 -0500
commit84f0415201e57e1919a2c91684e64bdedd85d159 (patch)
treea7965da1bac5321009bfe9e4919e5555c433c134 /test/common.sh
parent0f97e923d4921a057e1a7bbfac170cadefde5624 (diff)
downloadu-boot-84f0415201e57e1919a2c91684e64bdedd85d159.tar.gz
u-boot-84f0415201e57e1919a2c91684e64bdedd85d159.tar.xz
u-boot-84f0415201e57e1919a2c91684e64bdedd85d159.zip
Consistently use nproc for counting the CPUs
Coreutils command nproc can be used on Linux and BSD to count the number of available CPU cores. Use this instead of relying on the parsing of the Linux specific proc file system. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'test/common.sh')
-rw-r--r--test/common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/common.sh b/test/common.sh
index 702d1ed051..904d579b7b 100644
--- a/test/common.sh
+++ b/test/common.sh
@@ -13,7 +13,7 @@ fail() {
build_uboot() {
echo "Build sandbox"
OPTS="O=${OUTPUT_DIR} $1"
- NUM_CPUS=$(grep -c processor /proc/cpuinfo)
+ NUM_CPUS=$(nproc)
echo ${OPTS}
make ${OPTS} sandbox_config
make ${OPTS} -s -j${NUM_CPUS}