feat: Added editions and mirrors (#439)

This commit is contained in:
Kroese 2024-04-30 22:57:44 +02:00 committed by GitHub
parent 02c95fb960
commit 8be14ec466
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 5231 additions and 573 deletions

View file

@ -23,6 +23,21 @@ _trap() {
done
}
boot() {
[ -f "$QEMU_END" ] && return 0
if [ -s "$QEMU_PTY" ]; then
if grep -iq " hard" "$QEMU_PTY"; then
info "Windows started succesfully, visit http://localhost:8006/ to view the screen..."
return 0
fi
fi
error "Timeout while waiting for QEMU to boot the machine!"
return 0
}
ready() {
[ -f "$STORAGE/windows.boot" ] && return 0