qemush : suppression du flag -e dans la shebang line des scripts de lancement
This commit is contained in:
parent
89ac27367f
commit
1ce2a72206
4 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh -x
|
||||||
exec linux \
|
exec linux \
|
||||||
-vga qxl \
|
-vga qxl \
|
||||||
-device virtio-serial \
|
-device virtio-serial \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh -x
|
||||||
exec qemu-system-x86_64 \
|
exec qemu-system-x86_64 \
|
||||||
-enable-kvm \
|
-enable-kvm \
|
||||||
-M q35 \
|
-M q35 \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh -x
|
||||||
exec redox \
|
exec redox \
|
||||||
-vga qxl -spice port="$(first-free-port 5900)",addr=127.0.0.1,disable-ticketing=on \
|
-vga qxl -spice port="$(first-free-port 5900)",addr=127.0.0.1,disable-ticketing=on \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh -x
|
||||||
qemu-system-x86_64 \
|
qemu-system-x86_64 \
|
||||||
-enable-kvm \
|
-enable-kvm \
|
||||||
-cpu host -smp "$(("$(nproc)" / 2))" \
|
-cpu host -smp "$(("$(nproc)" / 2))" \
|
||||||
|
|
Loading…
Reference in a new issue