#!/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;
    . "$driverPath/AMDChipsetX399/Install.ps1" $context;
}