cloudbuild/scripts/qemu.sh

9 lines
171 B
Bash
Raw Normal View History

2022-06-21 02:36:42 -04:00
#!/bin/sh
2022-06-23 02:03:19 -04:00
QEMU=/usr/bin/qemu-system-x86_64
if [ -x $QEMU ]; then
exec $QEMU "$@"
2022-06-21 02:36:42 -04:00
fi
DEPS_DIR=guestfs/deps
2022-06-23 02:03:19 -04:00
exec ${DEPS_DIR}${QEMU} -L $DEPS_DIR/usr/share/seabios "$@"