Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.gitlab
diff options
context:
space:
mode:
authorDavid Runge <dvzrv@archlinux.org>2021-05-06 01:37:51 +0200
committerDavid Runge <dvzrv@archlinux.org>2021-05-06 01:37:51 +0200
commitc58b44f016e78796b365e4f01c61863d957ef1fa (patch)
treecc72d7fcd9c7a7d78536dba23e6c48be718c39d1 /.gitlab
parent42cdf8674a43c9ad5b69e3ddb6638cfb07633b9e (diff)
Use QEMU 6.x options
.gitlab/ci/build-host.sh: Change parameters to qemu's `-drive` option to make use of the explicit `read-only=on`, as the implicit `read-only` is now obsolete.
Diffstat (limited to '.gitlab')
-rwxr-xr-x.gitlab/ci/build-host.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci/build-host.sh b/.gitlab/ci/build-host.sh
index be688bb..12f6e64 100755
--- a/.gitlab/ci/build-host.sh
+++ b/.gitlab/ci/build-host.sh
@@ -71,7 +71,7 @@ function start_qemu() {
-initrd initramfs-linux.img \
-append "archisobasedir=arch archisolabel=${ISO_VOLUME_ID} cow_spacesize=4G ip=dhcp net.ifnames=0 console=ttyS0 mirror=${MIRROR}" \
-drive file=scratch-disk.img,format=raw,if=virtio \
- -drive file="${ISO}",format=raw,if=virtio,media=cdrom,read-only \
+ -drive file="${ISO}",format=raw,if=virtio,media=cdrom,read-only=on \
-virtfs "local,path=${ORIG_PWD},mount_tag=host,security_model=none" \
-monitor none \
-serial pipe:guest \