deploy the native patch earlier during first boot

This commit is contained in:
deflax 2024-11-14 00:44:29 +02:00 committed by Daniel Krastev
parent ad926a2821
commit e86d052f5a
3 changed files with 7 additions and 5 deletions

View file

@ -47,6 +47,7 @@ wget https://github.com/DISTRHO/Cardinal/releases/download/24.09/Cardinal-linux-
tar -xzvf /tmp/rpi-img/opt/Cardinal/Cardinal-linux-aarch64.tar.gz -C /tmp/rpi-img/opt/Cardinal/ CardinalNative
# setup GUI payload
cp -v ./src/payload.service /tmp/rpi-img/lib/systemd/system/payload.service
ln -v -s /lib/systemd/system/payload.service /tmp/rpi-img/etc/systemd/system/graphical.target.wants
echo "] press enter to write the image"

View file

@ -11,6 +11,7 @@ Restart=always
RestartSec=10s
KillMode=process
TimeoutSec=infinity
ConditionFileNotEmpty=/home/pi/Documents/templates/native.vcv
[Install]
WantedBy=graphical.target

View file

@ -1,5 +1,10 @@
#!/bin/bash
# deploy native patch
mkdir -vp /home/pi/Documents/templates/
cp -v /root/native.vcv /home/pi/Documents/templates/native.vcv
chown -R pi:pi /home/pi/Documents/templates/
# upgrade system
apt-get update
apt-get upgrade -y
@ -15,11 +20,6 @@ apt-get install ufw -y
ufw allow ssh
ufw enable
# deploy native patch
mkdir -vp /home/pi/Documents/templates/
cp -v /root/native.vcv /home/pi/Documents/templates/native.vcv
chown -R pi:pi /home/pi/Documents/templates/
# cleanup
mv /root/setup.sh /root/setup.sh.done
chmod -x /root/setup.sh.done