From 1ba9000da60a32c16eb2cbbdfe04d8c20f01493a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 15 Jul 2023 21:23:20 +0200 Subject: [PATCH] Add driver for thread ripper 2950x --- profiles/DerGeret/Windows/Drivers.ps1 | 1 + scripts/Windows/Drivers/AMDThreadRipper2950X/Install.ps1 | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 scripts/Windows/Drivers/AMDThreadRipper2950X/Install.ps1 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";