- Fix displaying proper logical name of network device bsc#1133923

* lswh-logical-name-iface.patch

OBS-URL: https://build.opensuse.org/package/show/hardware/lshw?expand=0&rev=26
This commit is contained in:
Martin Pluskal 2019-05-02 09:58:51 +00:00 committed by Git OBS Bridge
parent 32aa6046d6
commit 5798f02f86
3 changed files with 55 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu May 2 09:56:21 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
- Fix displaying proper logical name of network device bsc#1133923
* lswh-logical-name-iface.patch
-------------------------------------------------------------------
Thu Mar 28 09:34:43 UTC 2019 - Martin Pluskal <mpluskal@suse.com>

View File

@ -27,6 +27,8 @@ URL: https://www.ezix.org/project/wiki/HardwareLiSter
Source: lshw-%{version}.tar.xz
Source1: lshw.desktop.in
Source2: lshw.png
# PATCH-FIX-UPSTREAM lswh-logical-name-iface.patch bsc#1133923
Patch0: lswh-logical-name-iface.patch
BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme
BuildRequires: libpng-devel
@ -76,6 +78,7 @@ http://www.ezix.org/software/lshw.html
%prep
%setup -q
%patch0 -p1
%build
make \

View File

@ -0,0 +1,46 @@
From 85edb6a1a5734078a58bad21a5e6918e07f360bc Mon Sep 17 00:00:00 2001
From: Mamatha Inamdar <mamatha4@linux.vnet.ibm.com>
Date: Tue, 30 Apr 2019 17:24:50 +0530
Subject: [PATCH] Display proper logical name of network device
This patch adds support to display proper logical name of
network devices.
Test results:
*-l-lan
description: Ethernet interface
physical id: 2
bus info: vio@30000002
logical name: /proc/device-tree/vdevice/l-lan@30000002
With patch:
*-l-lan
description: Ethernet interface
physical id: 2
bus info: vio@30000002
logical name: /proc/device-tree/vdevice/l-lan@30000002
logical name: eth0
Signed-off-by: Mamatha Inamdar <mamatha4@linux.vnet.ibm.com>
Signed-off-by: Shivaprasad G Bhat <sbhat@linux.ibm.com>
---
src/core/hw.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/core/hw.cc b/src/core/hw.cc
index f136383..4522c1a 100644
--- a/src/core/hw.cc
+++ b/src/core/hw.cc
@@ -1284,8 +1284,8 @@ void hwNode::merge(const hwNode & node)
This->handle = node.getHandle();
if (This->description == "")
This->description = node.getDescription();
- if (This->logicalnames.size() == 0)
- This->logicalnames = node.getLogicalNames();
+ for (unsigned int i = 0; i < node.This->logicalnames.size(); i++)
+ setLogicalName(node.This->logicalnames[i]);
if (This->businfo == "")
This->businfo = node.getBusInfo();
if (This->physid == "")