Lines Matching full:qemu
12 # If we're going to run tests inside of a qemu image, then we don't need any of
18 if [ "$QEMU" != "" ]; then
19 tmpdir=/tmp/qemu-img-creation
22 if [ -z "${QEMU#*.gz}" ]; then
24 qemufile="$(echo "${QEMU%.gz}" | sed 's/\//__/g')"
26 curl --retry 5 "${MIRRORS_URL}/${QEMU}" | \
29 elif [ -z "${QEMU#*.xz}" ]; then
31 qemufile="$(echo "${QEMU%.xz}" | sed 's/\//__/g')"
33 curl --retry 5 "${MIRRORS_URL}/${QEMU}" | \
38 qemufile="$(echo "${QEMU}" | sed 's/\//__/g')"
40 curl --retry 5 "${MIRRORS_URL}/${QEMU}" \
45 # Create a mount a fresh new filesystem image that we'll later pass to QEMU.
73 qemu-system-x86_64 \