diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2018-12-10 15:17:20 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-19 18:00:54 +0000 |
commit | ff5f87419ccdddb192e24f3f85a2c3226fad4842 (patch) | |
tree | e39b26ae602c8d15df7f04c734fa908991fb63c6 | |
parent | 8b989aebc9c152430fc57f918a8e90210a792a9f (diff) | |
download | sos-ff5f87419ccdddb192e24f3f85a2c3226fad4842.tar.gz |
[hardware] collect Extended Display Identification Data
Collect /sys/class/drm/*/edid .
Resolves: #1507
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r-- | sos/plugins/hardware.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/hardware.py b/sos/plugins/hardware.py index b52d6ceb..3f79248c 100644 --- a/sos/plugins/hardware.py +++ b/sos/plugins/hardware.py @@ -24,7 +24,8 @@ class Hardware(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "/proc/devices", "/proc/rtc", "/var/log/mcelog", - "/sys/class/dmi/id/*" + "/sys/class/dmi/id/*", + "/sys/class/drm/*/edid" ]) self.add_cmd_output("dmidecode", root_symlink="dmidecode") |