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:00:05 +0200 |
commit | 0e6e9996c18f6a0e5ad4d23bf44cc9bf1c2aa0d1 (patch) | |
tree | 83a9a66309516fc2c32258840fac78c5aa57c5c6 | |
parent | 6898852396f36d08ce7cc69c5d8d26c3aff3f89a (diff) | |
download | linux-backports-dtc-redundant-yyloc-declaration/v4.16-rc3.tar.gz linux-backports-dtc-redundant-yyloc-declaration/v4.16-rc3.tar.bz2 linux-backports-dtc-redundant-yyloc-declaration/v4.16-rc3.zip |
Add test build scriptdtc-redundant-yyloc-declaration/v4.16-rc3
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} |