fix: Exclude drivers for 24H2

This commit is contained in:
Kroese 2024-08-18 04:35:04 +02:00 committed by GitHub
parent 190ca4e762
commit 66f1dd4bbc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -710,6 +710,12 @@ addDriver() {
[[ "${driver,,}" == "pvpanic" ]] && return 0
fi
if [[ "${id,,}" == "win11x64-iot" ]] || [[ "${id,,}" == "win11x64-ltsc" ]]; then
[[ "${driver,,}" == "smbus" ]] && return 0
[[ "${driver,,}" == "pvpanic" ]] && return 0
[[ "${driver,,}" == "viogpudo" ]] && return 0
fi
local dest="$path/$target/$driver"
mv "$path/$driver/$folder" "$dest"