3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 06:44:18 +00:00
Brooklyn/kernel/u-boot-master/test/common.sh

21 lines
301 B
Bash
Raw Normal View History

2022-04-02 13:17:33 +00:00
#!/bin/sh
OUTPUT_DIR=sandbox
fail() {
echo "Test failed: $1"
if [ -n ${tmp} ]; then
rm ${tmp}
fi
exit 1
}
build_uboot() {
echo "Build sandbox"
OPTS="O=${OUTPUT_DIR} $1"
NUM_CPUS=$(grep -c processor /proc/cpuinfo)
echo ${OPTS}
make ${OPTS} sandbox_config
make ${OPTS} -s -j${NUM_CPUS}
}