mirror of
https://github.com/dockur/windows.git
synced 2026-08-24 15:48:59 +01:00
fix: Migrate Win9x machine type (#2126)
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user