Thursday, November 17, 2016

Making lshw, IBM PowerPC compliant

Dear Linux Community,

The first tool that comes to mind when we think of obtaining hardware inventory on a computer is lshw, a concise tool leveraging C++ capabilities which already generates good results when run on a number of platforms, including x86.

lshw, like other cross-platform tools has generic code portions which are same across all platforms and some platform-specific code portions.

I am glad to tell that efforts to make lshw display correct and accurate platform-specific results when run on IBM PowerPC server systems running Linux are paying off as code-changes are getting merged upstream:
https://ezix.org/src/pkg/lshw/commits/branch/master/search?q=Chandni+Verma
(OR https://github.com/lyonel/lshw/commits/master?author=glassrose)
AND
https://ezix.org/src/pkg/lshw/commits/branch/master/search?q=Jack+Miller
https://ezix.org/src/pkg/lshw/commits/branch/master/search?q=Jeremy+Kerr
https://ezix.org/src/pkg/lshw/commits/branch/master/search?q=Vasant+Hegde

Update:
[
My other notable commits(despite of Lyonel Vincent not retaining my Author name and signoff tag) include:
https://ezix.org/src/pkg/lshw/commit/a5fb8431d9888cbd4b40e6435d4379bf0c86cdec
https://ezix.org/src/pkg/lshw/commit/d15668eb9569fd7d8259c3b5ca669781081d81c7
and
https://ezix.org/src/pkg/lshw/commit/27b1d1d18696be949dbe0b8a1639c5683de4ca8f

(or equivalently on github:
https://github.com/lyonel/lshw/commit/a5fb8431d9888cbd4b40e6435d4379bf0c86cdec
https://github.com/lyonel/lshw/commit/d15668eb9569fd7d8259c3b5ca669781081d81c7
and
https://github.com/lyonel/lshw/commit/27b1d1d18696be949dbe0b8a1639c5683de4ca8f
)
]

I'd like to thank lshw maintainer, Lyonel Vincent, for acknowledging and accepting all work from IBM. It would also be nice, if he can give me my rightful author name to the commits where he ripped them off from.

Research is ongoing on abilities that are required but are lacking in the generic code as well and some of those require deep knowledge of ioctls, SCSI, SAS etc. and their workings. We're seeing how to expose more of those hardware inventory (encapsulated by certain subsystems) along with their location-codes and Vital Product Data (VPD) to the users so watch the above spaces and keep your systems updated!

Cheers,
Happy Hacking!

No comments:

Post a Comment

Featured Post

interviewBit Medium: Palindrome Partitioning II

Problem Name:  Palindrome Partitioning II Problem Description : https://www.interviewbit.com/problems/palindrome-partitioning-ii/ Problem Ap...