mirror of
https://github.com/keylase/nvidia-patch.git
synced 2024-08-30 18:32:50 +00:00
ndl: add WS{2016,2019}
This commit is contained in:
parent
cc67638603
commit
129249995e
@ -187,6 +187,29 @@ All scripts may be used both as standalone application and importable module. Fo
|
|||||||
"product": "QuadroMobile",
|
"product": "QuadroMobile",
|
||||||
"certlevel": "All"
|
"certlevel": "All"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "nvidia_downloads",
|
||||||
|
"name": "downloads win server quadro certified",
|
||||||
|
"params": {
|
||||||
|
"os": "WindowsServer2012R2_64",
|
||||||
|
"product": "Quadro",
|
||||||
|
"certlevel": "Certified"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "nvidia_downloads",
|
||||||
|
"name": "downloads win server 2019 quadro certified",
|
||||||
|
"params": {
|
||||||
|
"os": "WindowsServer2019",
|
||||||
|
"product": "Quadro",
|
||||||
|
"certlevel": "Certified"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "cuda_downloads",
|
||||||
|
"name": "cuda toolkit tracker",
|
||||||
|
"params": {}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"notifiers": [
|
"notifiers": [
|
||||||
@ -261,7 +284,7 @@ Type: `nvidia_downloads`
|
|||||||
|
|
||||||
Params:
|
Params:
|
||||||
|
|
||||||
* `os` - OS family, version and bitness. Allowed values: `Linux_32`, `Linux_64`, `Windows7_32`, `Windows7_64`, `Windows10_32`, `Windows10_64`, `WindowsServer2012R2_32`, `WindowsServer2012R2_64`. Default: `Linux_64`.
|
* `os` - OS family, version and bitness. Allowed values: `Linux_32`, `Linux_64`, `Windows7_32`, `Windows7_64`, `Windows10_32`, `Windows10_64`, `WindowsServer2012R2_32`, `WindowsServer2012R2_64`, `WindowsServer2016`, `WindowsServer2019`. Default: `Linux_64`.
|
||||||
* `product` - product kind. Allowed values: `GeForce`, `GeForceMobile`, `Quadro`, `QuadroMobile`. Default: `GeForce`.
|
* `product` - product kind. Allowed values: `GeForce`, `GeForceMobile`, `Quadro`, `QuadroMobile`. Default: `GeForce`.
|
||||||
* `certlevel` - driver certification level. Allowed values: `All` - any certification level, `Beta` - beta drivers, `Certified` - WHQL certified in Windows case and Nvidia certified in Linux case, `ODE` - Optimal Driver for Enterprise (Quadro driver), `QNF` - Quadro New Feature (Quadro driver). Default: `All`.
|
* `certlevel` - driver certification level. Allowed values: `All` - any certification level, `Beta` - beta drivers, `Certified` - WHQL certified in Windows case and Nvidia certified in Linux case, `ODE` - Optimal Driver for Enterprise (Quadro driver), `QNF` - Quadro New Feature (Quadro driver). Default: `All`.
|
||||||
* `driver_type` - driver type. Allowed values: `Standard`, `DCH`. At this moment DCH driver appears to exists only for some product families and only for Windows 10 x64. Default: `Standard`.
|
* `driver_type` - driver type. Allowed values: `Standard`, `DCH`. At this moment DCH driver appears to exists only for some product families and only for Windows 10 x64. Default: `Standard`.
|
||||||
|
@ -21,6 +21,8 @@ class OS(enum.Enum):
|
|||||||
Windows10_64 = 57
|
Windows10_64 = 57
|
||||||
WindowsServer2012R2_32 = 32
|
WindowsServer2012R2_32 = 32
|
||||||
WindowsServer2012R2_64 = 44
|
WindowsServer2012R2_64 = 44
|
||||||
|
WindowsServer2016 = 74
|
||||||
|
WindowsServer2019 = 119
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
@ -176,6 +176,15 @@
|
|||||||
"certlevel": "Certified"
|
"certlevel": "Certified"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "nvidia_downloads",
|
||||||
|
"name": "downloads win server 2019 quadro certified",
|
||||||
|
"params": {
|
||||||
|
"os": "WindowsServer2019",
|
||||||
|
"product": "Quadro",
|
||||||
|
"certlevel": "Certified"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "cuda_downloads",
|
"type": "cuda_downloads",
|
||||||
"name": "cuda toolkit tracker",
|
"name": "cuda toolkit tracker",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user