Mailinglist Archive: opensuse-bugs (5398 mails)

< Previous Next >
[Bug 208854] Detection of ISA Card 3c509 does not work after installation
  • From: bugzilla_noreply@xxxxxxxxxx
  • Date: Sun, 10 Jun 2007 01:43:57 -0600 (MDT)
  • Message-id: <20070610074357.A4A59CC785@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=208854


dieter.jurzitza@xxxxxxxxxxx changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |




------- Comment #29 from dieter.jurzitza@xxxxxxxxxxx  2007-06-10 01:43 MST -------
Hi folks,
I compiled yast2-hardware-2.15.4 on my SuSE 10.2 and patched yast2-network
accordingly, derived from Michal Zugec's patch.
Unfortunately, the content of hw["sysfs_id"]:"" is not "pnp" here, it is empty.
Anyone having a suggestion for me? Or doesn't this work on 10.2.

I implemented the following patch:

***************************************************************************
--- yast2-network-2.14.12/src/modules/Lan.ycp   2007-06-09 13:01:08.000000000
+0200
+++ yast2-network-2.14.12/src/modules/Lan.ycp   2007-06-09 13:01:08.000000000
+0200
@@ -605,8 +605,14 @@

     // name of hwcfg
     if(busid != nil && busid != "") {
-       nm_name = "bus-" + hw["bus"]:"" + "-" + hw["busid"]:"";
+     // #208854 - include "static" string 
+       if(issubstring(hw["sysfs_id"]:"", "pnp")){
+            nm_name = "static-bus-" + hw["bus"]:"" + "-" + hw["busid"]:""; 
+       }
+       else{
+       nm_name = "bus-" + hw["bus"]:"" + "-" + hw["sysfs_id"]:"" + "-" +
hw["busid"]:"";
        if(Arch::s390 ()) nm_name = type + "-" + nm_name;
+       }
     }
     else {
        // #42421
***************************************************************************
to detect the contents of hw["sysfs_id"]:"" by just adding it to the network
card's hardware-filename (only for debugging).
Anyone having an idea what went wrong?
Thank you!
Take care


Dieter Jurzitza


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

< Previous Next >