diff options
-rwxr-xr-x | scripts/check-qemu-install | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 00bdf080..0a5e3970 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -375,8 +375,10 @@ try: toggleUEFISecureBoot(c) try: - c.expect('Automatic boot in', timeout=10) - c.sendline('') + c.expect('Welcome to GRUB', timeout=10) + c.send(KEY_DOWN) + c.send(KEY_DOWN) + c.send(KEY_RETURN) except pexpect.TIMEOUT: log.warning('Did not find GRUB countdown window, ignoring') |