feat: Local drivers (#335)

This commit is contained in:
Kroese 2024-01-15 05:26:22 +01:00 committed by GitHub
parent a42330a2f3
commit e02aa4385b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,6 @@ set -Eeuo pipefail
: "${DISK_ROTATION:="1"}" # Rotation rate, set to 1 for SSD storage and increase for HDD
BOOT="$STORAGE/$BASE"
DRIVERS="$STORAGE/drivers.img"
DISK_OPTS="-object iothread,id=io2"
if [ -f "$BOOT" ]; then
@ -21,6 +20,9 @@ if [ -f "$BOOT" ]; then
-device scsi-cd,bus=scsi0.0,drive=cdrom0,bootindex=10"
fi
DRIVERS="$STORAGE/drivers.img"
[ ! -f "$DRIVERS" ] && DRIVERS="/run/drivers.iso"
if [ -f "$DRIVERS" ]; then
DISK_OPTS="$DISK_OPTS \
-drive id=cdrom1,if=none,format=raw,readonly=on,file=$DRIVERS \