qemush : suppression du flag -e dans la shebang line des scripts de lancement

This commit is contained in:
Hippolyte Chauvin 2023-12-01 22:52:55 +01:00
parent 89ac27367f
commit 1ce2a72206
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh -ex
#!/bin/sh -x
exec linux \
-vga qxl \
-device virtio-serial \

View file

@ -1,4 +1,4 @@
#!/bin/sh -ex
#!/bin/sh -x
exec qemu-system-x86_64 \
-enable-kvm \
-M q35 \

View file

@ -1,4 +1,4 @@
#!/bin/sh -ex
#!/bin/sh -x
exec redox \
-vga qxl -spice port="$(first-free-port 5900)",addr=127.0.0.1,disable-ticketing=on \
"$@"

View file

@ -1,4 +1,4 @@
#!/bin/sh -ex
#!/bin/sh -x
qemu-system-x86_64 \
-enable-kvm \
-cpu host -smp "$(("$(nproc)" / 2))" \