Hello community, here is the log from the commit of package lshw for openSUSE:Factory checked in at 2020-09-01 20:08:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lshw (Old) and /work/SRC/openSUSE:Factory/.lshw.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lshw" Tue Sep 1 20:08:09 2020 rev:18 rq:830704 version:B.02.19.2 Changes: -------- --- /work/SRC/openSUSE:Factory/lshw/lshw.changes 2020-04-25 20:36:51.843078638 +0200 +++ /work/SRC/openSUSE:Factory/.lshw.new.3399/lshw.changes 2020-09-01 20:09:07.556641734 +0200 @@ -1,0 +2,6 @@ +Mon Aug 31 08:34:41 UTC 2020 - Martin Pluskal <mplus...@suse.com> + +- Fix detection of ppc products - boo#1172156 + * lshw-fix-ppc.patch + +------------------------------------------------------------------- New: ---- lshw-fix-ppc.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lshw.spec ++++++ --- /var/tmp/diff_new_pack.rmmsUO/_old 2020-09-01 20:09:08.156642015 +0200 +++ /var/tmp/diff_new_pack.rmmsUO/_new 2020-09-01 20:09:08.156642015 +0200 @@ -31,6 +31,8 @@ Patch1: lshw-fix-segfault-in-apfs-volume-code.patch # PATCH-FIX-UPSTREAM - https://github.com/lyonel/lshw/pull/52 - boo#1169668 Patch2: lshw-fix-mmc.patch +# PATCH-FIX-UPSTREAM - https://github.com/lyonel/lshw/commit/3775782808e8b9b8aa72ed2ce23e145433e193cf - boo#1172156 +Patch3: lshw-fix-ppc.patch BuildRequires: gcc-c++ BuildRequires: hicolor-icon-theme BuildRequires: libpng-devel ++++++ lshw-fix-ppc.patch ++++++ >From 3775782808e8b9b8aa72ed2ce23e145433e193cf Mon Sep 17 00:00:00 2001 From: Lyonel Vincent <lyo...@ezix.org> Date: Wed, 27 May 2020 01:16:20 +0200 Subject: [PATCH] report product model on Power systems Github PR #54 --- src/core/device-tree.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/device-tree.cc b/src/core/device-tree.cc index e7227e1..027ad16 100644 --- a/src/core/device-tree.cc +++ b/src/core/device-tree.cc @@ -1396,7 +1396,7 @@ static void get_ibm_model(hwNode & n) { if (ibm_model_defs[i].model == machinetype || ibm_model_defs[i].model == model) { - n.setProduct(ibm_model_defs[i].modelname); + n.setProduct(n.getProduct() + " (" + ibm_model_defs[i].modelname + ")"); n.addHint("icon", string(ibm_model_defs[i].icon)); n.setConfig("chassis", ibm_model_defs[i].chassis); return;