Add marvell ethernet driver
This commit is contained in:
parent
6eefc472fb
commit
23ece1b9db
2 changed files with 16 additions and 0 deletions
10
profiles/DerGeret/Windows/Drivers.ps1
Normal file
10
profiles/DerGeret/Windows/Drivers.ps1
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/pwsh
|
||||
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
|
||||
|
||||
function Install-PortValhallaDrivers {
|
||||
param(
|
||||
[Context] $context
|
||||
)
|
||||
|
||||
. "$PSScriptRoot/../../../scripts/Windows/Drivers/MarvellEthernet/Install.ps1" $context;
|
||||
}
|
6
scripts/Windows/Drivers/MarvellEthernet/Install.ps1
Normal file
6
scripts/Windows/Drivers/MarvellEthernet/Install.ps1
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/pwsh
|
||||
. "$PSScriptRoot/../../Scripts/AsusSoftwarePackage.ps1";
|
||||
|
||||
param([Context] $context)
|
||||
|
||||
Install-AsusSoftwarePackage $context "https://dlcdnets.asus.com/pub/ASUS/mb/04LAN/DRV_LAN_Marvell_TP_TSD_W11_64_V3130_20211118R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA";
|
Loading…
Reference in a new issue