diff -Nru sosreport-3.9/debian/changelog sosreport-3.9/debian/changelog --- sosreport-3.9/debian/changelog 2020-03-11 17:09:08.000000000 +0000 +++ sosreport-3.9/debian/changelog 2020-05-10 18:33:14.000000000 +0000 @@ -1,3 +1,10 @@ +sosreport (3.9-1ubuntu0.16.04.2) xenial; urgency=low + + * d/p/0002-lshw-command.patch (LP: #1871494) + - Add `lshw` command to hardware plugin + + -- Heather Lemon Wed, 22 Apr 2020 09:32:27 -0600 + sosreport (3.9-1ubuntu0.16.04.1) xenial; urgency=medium * New 3.9 upstream release (LP: #1862830) diff -Nru sosreport-3.9/debian/patches/0002-lshw-command.patch sosreport-3.9/debian/patches/0002-lshw-command.patch --- sosreport-3.9/debian/patches/0002-lshw-command.patch 1970-01-01 00:00:00.000000000 +0000 +++ sosreport-3.9/debian/patches/0002-lshw-command.patch 2020-05-10 18:32:33.000000000 +0000 @@ -0,0 +1,25 @@ +From 2dd5cd45a8381fa36ea99c85b526f9d79e526d91 Mon Sep 17 00:00:00 2001 +From: Jose Castillo +Date: Wed, 1 Apr 2020 18:50:57 +0200 +Subject: [hardware] Add output of lshw + This plugin adds the output of the command + lshw, and its output complements what we + already collect with dmidecode. + +Signed-off-by: Jose Castillo +Origin: upstream, https://github.com/sosreport/sos/commit/2dd5cd45a8381fa36ea99c85b526f9d79e526d91 +Bug-Ubuntu: https://bugs.launchpad.net/bugs/1871494 +--- + sos/plugins/hardware.py | 1 + + 1 file changed, 1 insertion(+) + +--- sosreport-3.9.orig/sos/plugins/hardware.py ++++ sosreport-3.9/sos/plugins/hardware.py +@@ -29,6 +29,7 @@ class Hardware(Plugin, RedHatPlugin, Deb + ]) + + self.add_cmd_output("dmidecode", root_symlink="dmidecode") ++ self.add_cmd_output("lshw") + + + # vim: set et ts=4 sw=4 : diff -Nru sosreport-3.9/debian/patches/series sosreport-3.9/debian/patches/series --- sosreport-3.9/debian/patches/series 2020-02-16 01:35:52.000000000 +0000 +++ sosreport-3.9/debian/patches/series 2020-05-10 18:32:33.000000000 +0000 @@ -1 +1,2 @@ 0001-unittest-py3-fix.patch +0002-lshw-command.patch