Merge pull request #151 from qemu-tools/dev

fix: Disable pidwait
This commit is contained in:
Kroese 2023-07-18 21:01:05 +02:00 committed by GitHub
commit 8a46276825

View file

@ -81,8 +81,8 @@ set -m
) )
set +m set +m
if (( KERNEL > 5 )) || ( (( KERNEL == 5 )) && (( MINOR > 2 )) ); then #if (( KERNEL > 5 )) || ( (( KERNEL == 5 )) && (( MINOR > 2 )) ); then
pidwait -F "${_QEMU_PID}" & wait $! # pidwait -F "${_QEMU_PID}" & wait $!
fi #else
tail --pid "$(cat "${_QEMU_PID}")" --follow /dev/null & wait $! tail --pid "$(cat "${_QEMU_PID}")" --follow /dev/null & wait $!