virtio win drivers 0.1.215

This commit is contained in:
Peter V. Beck 2022-02-14 01:02:45 +01:00
parent 1ad7f606ea
commit 849e7720bc
3 changed files with 8 additions and 7 deletions

View File

@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>kvm-virtio-drivers</id>
<version>0.1.208</version>
<version>0.1.215</version>
<title>KVM Virtio Drivers for Windows</title>
<authors>Red Hat</authors>
<owners>foo.li systeme + software</owners>
@ -14,7 +14,7 @@
This package will download the latest stable drivers, unzip them and tries automatically to update/install needed drivers.
Note: for the QEMU guest agent there is a separate package available (which already uses this package as dependency).</description>
<summary>KVM Virtio Drivers</summary>
<releaseNotes>upgrade to 0.1.208 (2021-09-13)</releaseNotes>
<releaseNotes>upgrade to 0.1.215 (2022-01-11)</releaseNotes>
<tags>virtualisation kvm virtio guest-agents drivers</tags>
</metadata>
<!-- building package on gnu/linux with nuget (https://packages.debian.org/stretch/nuget)

View File

@ -1,5 +1,5 @@
# Virtio Drivers for Windows VMs running on KVM
# 2011-2021 foo.li systeme + software
# 2011-2022 foo.li systeme + software
# export installed redhat certificate to a file with win7
# $CertToExport = dir cert:\LocalMachine -Recurse | where {$_.ThumbPrint -eq "66ED6843B0F6DC9B636C6814E53A26983EF32B4E"}
@ -7,7 +7,7 @@
# [system.IO.file]::WriteAllBytes("C:\Temp\RedHat.cer", $CertToExportInBytesForCERFile)
$packageName = 'kvm-virtio-drivers'
$version = '0.1.208'
$version = '0.1.215'
$url = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso'
$url64 = $url
$virtioPath = "$env:SystemDrive" + "\Virtio_" + $version
@ -16,7 +16,7 @@ $dpinst = Join-Path $scriptPath 'dpinstX86.exe'
$dpinst64 = Join-Path $scriptPath 'dpinstX64.exe'
$dpinstxml = Join-Path $scriptPath 'dpinst.xml'
$cleanupdrv = Join-Path $scriptPath 'cleanfolder.ps1'
$checksum = '93bd930d5d61b3e7c1390559e5e22420a75fd78a'
$checksum = '38364f050257b7c34b9f0c4b5d234c4c2cc5929d'
$checksumType = 'sha1'
$checksum64 = $checksum
$checksumType64 = $checksumType
@ -111,6 +111,7 @@ try {
Remove-Item "${env:SystemDrive}\Virtio_0.1.190" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item "${env:SystemDrive}\Virtio_0.1.196" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item "${env:SystemDrive}\Virtio_0.1.204" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item "${env:SystemDrive}\Virtio_0.1.208" -Force -Recurse -ErrorAction SilentlyContinue
} catch {
throw $_.Exception
}

View File

@ -1,8 +1,8 @@
# virtio windows drivers Removal
# 2017-2021 foo.li systeme + software
# 2017-2022 foo.li systeme + software
$packageName = 'kvm-virito-drivers'
$version = '0.1.208'
$version = '0.1.215'
$virtioPath = "$env:SystemDrive" + "\Virtio_" + $version
try {