From 0651e40aaa805e4353b24e3e3a50e8264d0dd8b6 Mon Sep 17 00:00:00 2001 From: Rui Cao Date: Mon, 17 Aug 2020 14:10:50 +0800 Subject: [PATCH] [Windows] Resolve OVS dependency for VC 2010 runtime (#1099) OVS depends on VC 2010 runtime. However the VC runtime redistribution contained in OVS package provided by Antrea is VC 2013. This patch updates the OVS package the to resolve the dependency issue. Signed-off-by: Rui Cao --- hack/windows/Install-OVS.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/windows/Install-OVS.ps1 b/hack/windows/Install-OVS.ps1 index d06fb63fb62..f59cef37340 100644 --- a/hack/windows/Install-OVS.ps1 +++ b/hack/windows/Install-OVS.ps1 @@ -8,8 +8,8 @@ $ErrorActionPreference = "Stop" # TODO: set up HTTPS so that the archive can be downloaded securely. In the # meantime, we use a SHA256 hash to ensure that the downloaded archive is # correct. -$OVSDownloadURL = "http://downloads.antrea.io/ovs/ovs-2.13.1-win64.zip" -$OVSPublishedHash = '7E8364D684CC37417D70281354AA55987F52F143BF2DA162B6728A24E6B67546' +$OVSDownloadURL = "http://downloads.antrea.io/ovs/ovs-2.13.1-1.1-win64.zip" +$OVSPublishedHash = '83AA08526D947B08A952339B849441D4896AAB7437B4101CFBCE1130888FF459' $OVSDownloadDir = [System.IO.Path]::GetDirectoryName($myInvocation.MyCommand.Definition) $InstallLog = "$OVSDownloadDir\install.log" $OVSZip = "$OVSDownloadDir\ovs-win64.zip"