build(arm64-rpi): make /dev/shm world writable for the build (#4347)

This commit is contained in:
openoms 2024-01-02 14:19:20 +01:00 committed by GitHub
parent 00fe2e2c67
commit 5321480fb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,11 +5,12 @@ wget https://raw.githubusercontent.com/${github_user}/raspiblitz/${branch}/build
if [ "${pack}" = "fatpack" ]; then if [ "${pack}" = "fatpack" ]; then
fatpack="1" fatpack="1"
# make /dev/shm world writable for qemu
sudo chmod 777 /dev/shm
else else
fatpack="0" fatpack="0"
fi fi
# make /dev/shm world writable for qemu
sudo chmod 777 /dev/shm
echo 'Build RaspiBlitz ...' echo 'Build RaspiBlitz ...'
bash build_sdcard.sh -f ${fatpack} -u ${github_user} -b ${branch} -t false -w off -i false bash build_sdcard.sh -f ${fatpack} -u ${github_user} -b ${branch} -t false -w off -i false