Skip to content

Commit

Permalink
[Windows] Resolve OVS dependency for VC 2010 runtime (#1099)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
ruicao93 committed Aug 18, 2020
1 parent c2d7280 commit 0651e40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/windows/Install-OVS.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0651e40

Please sign in to comment.