aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2024-06-19 10:04:58 +0200
committerSébastien Dailly <sebastien@dailly.me>2024-06-21 10:41:29 +0200
commit1d9b6b236907b56960ba5f8f7989f135c170f504 (patch)
tree94bf914b008fda6e3898b11c8b1106b2461fdcaf
parent5afac2cf9815f1624e282850aeb32e78408c0878 (diff)
Updated to latest buildroot
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 15e6d5a..065b81f 100755
--- a/build.sh
+++ b/build.sh
@@ -9,7 +9,7 @@ usage() {
}
-test -z ${BUILDROOT_DIR} && BUILDROOT_DIR="../buildroot-2022.08.1"
+test -z ${BUILDROOT_DIR} && BUILDROOT_DIR="../buildroot-2024.05/"
if [ ! -d ${BUILDROOT_DIR} ]; then
usage
@@ -46,4 +46,4 @@ sed "1i ### DO NOT EDIT, this file was automatically generated\n" -i "configs/${
BR2_EXTERNAL="$(pwd)" make O="$(pwd)/output/$BOARDNAME" -C "$BUILDROOT_DIR" "${BOARDNAME}_defconfig"
# Build
-BR2_EXTERNAL="$(pwd)" make O="$(pwd)/output/${BOARDNAME}" -C ${BUILDROOT_DIR} "$2"
+BR2_EXTERNAL="$(pwd)" make -j8 O="$(pwd)/output/${BOARDNAME}" -C ${BUILDROOT_DIR} "$2"