Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
nvidia-patch
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
nvidia-patch
Commits
aa6490c1
Commit
aa6490c1
authored
Apr 03, 2019
by
Vladislav Yarmak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gfe: update client version and introduce CRD support
parent
18196131
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
tools/nv-driver-locator/gfe_get_driver.py
tools/nv-driver-locator/gfe_get_driver.py
+10
-2
No files found.
tools/nv-driver-locator/gfe_get_driver.py
View file @
aa6490c1
...
...
@@ -41,6 +41,7 @@ def get_latest_geforce_driver(*,
language
=
1033
,
beta
=
False
,
dch
=
False
,
crd
=
False
,
timeout
=
10
):
# GeForce GTX 1080 and GP104 HD Audio
dt_id
=
[
"1B80_10DE_119E_10DE"
]
...
...
@@ -57,9 +58,11 @@ def get_latest_geforce_driver(*,
"lg"
:
str
(
language
),
# Language code
"iLp"
:
"1"
if
notebook
else
"0"
,
# System Is Laptop
"prvMd"
:
"0"
,
# Private Model?
"gcV"
:
"3.1
6.0.140"
,
# GeForce Experience client version
"gcV"
:
"3.1
8.0.94"
,
# GeForce Experience client version
"gIsB"
:
"1"
if
beta
else
"0"
,
# Beta?
"dch"
:
"1"
if
dch
else
"0"
# 0 - Standard Driver, 1 - DCH Driver
"dch"
:
"1"
if
dch
else
"0"
,
# 0 - Standard Driver, 1 - DCH Driver
"upCRD"
:
"1"
if
crd
else
"0"
,
# Searched driver: 0 - GameReady Driver, 1 - CreatorReady Driver
"isCRD"
:
"1"
if
crd
else
"0"
,
# Installed driver: 0 - GameReady Driver, 1 - CreatorReady Driver
}
try
:
res
=
getDispDrvrByDevid
(
query_obj
,
timeout
)
...
...
@@ -114,6 +117,10 @@ def parse_args():
parser
.
add_argument
(
"-D"
,
"--dch"
,
help
=
"Query DCH driver instead of Standard driver"
,
action
=
"store_true"
)
parser
.
add_argument
(
"-C"
,
"--crd"
,
help
=
"Query CreatorReady driver instead of "
"GameReady driver"
,
action
=
"store_true"
)
parser
.
add_argument
(
"-T"
,
"--timeout"
,
type
=
check_positive_float
,
default
=
10.
,
...
...
@@ -135,6 +142,7 @@ def main():
x86_64
=
(
not
args
.
_32bit
),
beta
=
args
.
beta
,
dch
=
args
.
dch
,
crd
=
args
.
crd
,
timeout
=
args
.
timeout
)
if
drv
is
None
:
print
(
"NOT FOUND"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment