diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-05-12 17:52:29 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-05-12 18:05:09 +0200 |
commit | d39caa48a5e2a995419b8306455ec48880384a42 (patch) | |
tree | eb216aab945f36dd22e82ec76e7d81bc0ba9a9af | |
parent | f61776fcdaa0555991b55ec964808c43b8db0b8c (diff) | |
download | linux-backports-dtc-redundant-yyloc-declaration/v5.6-rc1.tar.gz linux-backports-dtc-redundant-yyloc-declaration/v5.6-rc1.tar.bz2 linux-backports-dtc-redundant-yyloc-declaration/v5.6-rc1.zip |
Add test build scriptdtc-redundant-yyloc-declaration/v5.6-rc1
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rwxr-xr-x | build.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 000000000000..fd8b156fd7ea --- /dev/null +++ b/build.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +ncores=$(grep processor /proc/cpuinfo | wc -l) +njobs=$(expr ${ncores} + 1) + +export ARCH=arm +export CROSS_COMPILE=arm-linux-gnueabi- + +git clean -dfx +make clean +make allnoconfig +time make -j${njobs} |