fix: Migrate Win9x machine type (#2126)

This commit is contained in:
Kroese
2026-08-10 07:10:13 +02:00
committed by GitHub
parent 5b9a376111
commit 9ef6f3c4ca
4 changed files with 166 additions and 151 deletions
+14
View File
@@ -1058,6 +1058,20 @@ supportsUnattended() {
return 0
}
supportsBootKey() {
local id="$1"
case "${id,,}" in
"win9"* | "winnt4" | "reactos" )
return 1 ;;
"win"* | "tiny"* | "core"* )
return 0 ;;
esac
return 1
}
supportsXML() {
local id="$1"