Add driver for thread ripper 2950x

This commit is contained in:
Manuel Thalmann 2023-07-15 21:23:20 +02:00
parent a22184ef60
commit b16136d2fa
2 changed files with 7 additions and 0 deletions

View file

@ -14,4 +14,5 @@ function Install-PortValhallaDrivers {
. "$mbDriverPath/AMDChipsetX399/Install.ps1" $context; . "$mbDriverPath/AMDChipsetX399/Install.ps1" $context;
. "$mbDriverPath/IntelBluetooth/Install.ps1" $context; . "$mbDriverPath/IntelBluetooth/Install.ps1" $context;
. "$driverPath/AMDChipsetX399/Install.ps1" $context; . "$driverPath/AMDChipsetX399/Install.ps1" $context;
. "$driverPath/AMDThreadRipper2950X/Install.ps1" $context;
} }

View file

@ -0,0 +1,6 @@
#!/bin/pwsh
param([Context] $context)
. "$PSScriptRoot/../../Scripts/AmdSoftwarePackage.ps1";
Install-AmdSoftwarePackage $context "https://www.amd.com/en/support/cpu/amd-ryzen-processors/amd-ryzen-threadripper-processors/amd-ryzen-threadripper-2950x";