Fully removes HD detection
This commit is contained in:
parent
94a08e3e8f
commit
a46a74b994
1 changed files with 4 additions and 4 deletions
|
|
@ -173,15 +173,15 @@ class LSHW():
|
||||||
return
|
return
|
||||||
|
|
||||||
for bus in obj["children"]:
|
for bus in obj["children"]:
|
||||||
if bus["class"] == "storage":
|
#if bus["class"] == "storage":
|
||||||
self.find_storage(bus)
|
# self.find_storage(bus)
|
||||||
if bus["class"] == "display":
|
if bus["class"] == "display":
|
||||||
self.find_gpus(bus)
|
self.find_gpus(bus)
|
||||||
|
|
||||||
if "children" in bus:
|
if "children" in bus:
|
||||||
for b in bus["children"]:
|
for b in bus["children"]:
|
||||||
if b["class"] == "storage":
|
#if b["class"] == "storage":
|
||||||
self.find_storage(b)
|
# self.find_storage(b)
|
||||||
if b["class"] == "network":
|
if b["class"] == "network":
|
||||||
self.find_network(b)
|
self.find_network(b)
|
||||||
if b["class"] == "display":
|
if b["class"] == "display":
|
||||||
|
|
|
||||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue