diff options
author | Jybz <j.biernacki@free.fr> | 2021-02-19 15:08:05 +0100 |
---|---|---|
committer | Jybz <j.biernacki@free.fr> | 2021-02-19 15:08:05 +0100 |
commit | 4a7138cc91c4c04aa232c2fac157a86616471c0f (patch) | |
tree | 1f10572122e0d6415b0a7e6d6c9405b7fc8cc728 /build_all.sh | |
parent | 58f53fbaaca456f680e340c4bfb0b12466d59676 (diff) | |
download | mageia4arm-4a7138cc91c4c04aa232c2fac157a86616471c0f.tar mageia4arm-4a7138cc91c4c04aa232c2fac157a86616471c0f.tar.gz mageia4arm-4a7138cc91c4c04aa232c2fac157a86616471c0f.tar.bz2 mageia4arm-4a7138cc91c4c04aa232c2fac157a86616471c0f.tar.xz mageia4arm-4a7138cc91c4c04aa232c2fac157a86616471c0f.zip |
Add rpi-aarch64 configuration to build_all.sh, add a size variable as plasma5-minimal needs at least 6GB.
Diffstat (limited to 'build_all.sh')
-rwxr-xr-x | build_all.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_all.sh b/build_all.sh index c6e0a48..818b446 100755 --- a/build_all.sh +++ b/build_all.sh @@ -118,9 +118,9 @@ for SBC_config in ${SBCs}; do else unset NONFREE fi - SBC="$(echo ${SBC_config} | jq -r '.board')" + SIZE="$(echo ${SBC_config} | jq -r '.size')" print_info "Start build for ${SBC}" - $sudo_root "${PROG_DIR}/create_arm_image.sh --all --build-path ${workdir} --config ${SBC} ${DESKTOP} ${NONFREE} --compress --add-checksum 2>&1 | tee -a ${workdir}/$(date "+%Y-%m-%d_%H:%M")-${SBC}.log" + $sudo_root "${PROG_DIR}/create_arm_image.sh --all --build-path ${workdir} --config ${SBC} ${DESKTOP} ${NONFREE} --size ${SIZE} --compress --add-checksum 2>&1 | tee -a ${workdir}/$(date "+%Y-%m-%d_%H:%M")-${SBC}.log" $sudo_bcd "mkdir -p ${destdir}/${SBC}" $sudo_bcd "mv ${workdir}/* ${destdir}/${SBC}/" # not enough space on rabbit's RAM disk for all four variants, so delete as we go |