diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2024-06-19 10:04:58 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2024-06-21 10:41:29 +0200 |
commit | 1d9b6b236907b56960ba5f8f7989f135c170f504 (patch) | |
tree | 94bf914b008fda6e3898b11c8b1106b2461fdcaf | |
parent | 5afac2cf9815f1624e282850aeb32e78408c0878 (diff) |
Updated to latest buildroot
-rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |