PortValhalla/profiles/DerGeret/Windows/Drivers.ps1

17 lines
524 B
PowerShell

#!/bin/pwsh
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
function Install-PortValhallaDrivers {
param(
[Context] $context
)
$driverPath = "$PSScriptRoot/../../../scripts/Windows/Drivers";
$mbDriverPath = "$driverPath/ROG Zenith Extreme Alpha";
. "$mbDriverPath/MarvellEthernet/Install.ps1" $context;
. "$mbDriverPath/IntelWiFi/Install.ps1" $context;
. "$mbDriverPath/AMDChipsetX399/Install.ps1" $context;
. "$mbDriverPath/IntelBluetooth/Install.ps1" $context;
}