diff --git a/profiles/DerGeret/Windows/Drivers.ps1 b/profiles/DerGeret/Windows/Drivers.ps1 index 5ea131e0..0a9d0afa 100644 --- a/profiles/DerGeret/Windows/Drivers.ps1 +++ b/profiles/DerGeret/Windows/Drivers.ps1 @@ -14,4 +14,5 @@ function Install-PortValhallaDrivers { . "$mbDriverPath/AMDChipsetX399/Install.ps1" $context; . "$mbDriverPath/IntelBluetooth/Install.ps1" $context; . "$driverPath/AMDChipsetX399/Install.ps1" $context; + . "$driverPath/AMDThreadRipper2950X/Install.ps1" $context; } diff --git a/scripts/Windows/Drivers/AMDThreadRipper2950X/Install.ps1 b/scripts/Windows/Drivers/AMDThreadRipper2950X/Install.ps1 new file mode 100644 index 00000000..e83631ea --- /dev/null +++ b/scripts/Windows/Drivers/AMDThreadRipper2950X/Install.ps1 @@ -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";