diff -Nru sosreport-3.9/debian/changelog sosreport-3.9/debian/changelog --- sosreport-3.9/debian/changelog 2020-03-20 00:48:01.000000000 -0600 +++ sosreport-3.9/debian/changelog 2020-04-27 09:33:16.000000000 -0600 @@ -1,3 +1,10 @@ +sosreport (3.9-1ubuntu3) groovy; urgency=low + + * d/p/0003-lshw-command.patch (LP: #1871494) + - Add `lshw` command to hardware plugin + + -- Heather Lemon Mon, 27 Apr 2020 09:33:16 -0600 + sosreport (3.9-1ubuntu2) focal; urgency=medium * d/p/0002-lxd-drop-db-collection-and-introduce-lxd-buginfo.patch: diff -Nru sosreport-3.9/debian/patches/0003-lshw-command.patch sosreport-3.9/debian/patches/0003-lshw-command.patch --- sosreport-3.9/debian/patches/0003-lshw-command.patch 1969-12-31 17:00:00.000000000 -0700 +++ sosreport-3.9/debian/patches/0003-lshw-command.patch 2020-04-27 09:33:16.000000000 -0600 @@ -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(+) + +--- a/sos/plugins/hardware.py ++++ b/sos/plugins/hardware.py +@@ -29,6 +29,7 @@ + ]) + + 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-03-20 00:48:01.000000000 -0600 +++ sosreport-3.9/debian/patches/series 2020-04-27 09:32:45.000000000 -0600 @@ -1,2 +1,3 @@ 0001-unittest-py3-fix.patch 0002-lxd-drop-db-collection-and-introduce-lxd-buginfo.patch +0003-lshw-command.patch