Mailinglist Archive: yast-commit (265 mails)
| < Previous | Next > |
[yast-commit] r67248 - /branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
- From: jreidinger@xxxxxxxxxxxxxxxxx
- Date: Mon, 23 Jan 2012 10:56:56 -0000
- Message-id: <20120123105658.8DF4032639@svn2.opensuse.org>
Author: jreidinger
Date: Mon Jan 23 11:56:53 2012
New Revision: 67248
URL: http://svn.opensuse.org/viewcvs/yast?rev=67248&view=rev
Log:
filter out remaining chelsio devices which cannot networking (based on device
id)
Modified:
branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
Modified: branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp?rev=67248&r1=67247&r2=67248&view=diff
==============================================================================
--- branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
(original)
+++ branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp Mon Jan
23 11:56:53 2012
@@ -748,8 +748,9 @@
card_ok=false;
y2milestone("Filtering out virtio device without device file.");
}
- // filter out device with chelsio Driver and no Device File (bnc#711432)
- if (one["module"]:""=="cxgb4" && one["dev_name"]:""==""){
+ // filter out device with chelsio Driver and no Device File or which
cannot networking(bnc#711432)
+ if ((one["module"]:""=="cxgb4" && one["dev_name"]:""=="") ||
+ (card["vendor_id"]:0==0x11425 && card["device_id"]:0 ==
0x14102){ // 0x10000 for PCI and 0x4102 is device id of device and 0x1425 for
chelsio inc
card_ok=false;
y2milestone("Filtering out Chelsio device without device file.");
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Mon Jan 23 11:56:53 2012
New Revision: 67248
URL: http://svn.opensuse.org/viewcvs/yast?rev=67248&view=rev
Log:
filter out remaining chelsio devices which cannot networking (based on device
id)
Modified:
branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
Modified: branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp?rev=67248&r1=67247&r2=67248&view=diff
==============================================================================
--- branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
(original)
+++ branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp Mon Jan
23 11:56:53 2012
@@ -748,8 +748,9 @@
card_ok=false;
y2milestone("Filtering out virtio device without device file.");
}
- // filter out device with chelsio Driver and no Device File (bnc#711432)
- if (one["module"]:""=="cxgb4" && one["dev_name"]:""==""){
+ // filter out device with chelsio Driver and no Device File or which
cannot networking(bnc#711432)
+ if ((one["module"]:""=="cxgb4" && one["dev_name"]:""=="") ||
+ (card["vendor_id"]:0==0x11425 && card["device_id"]:0 ==
0x14102){ // 0x10000 for PCI and 0x4102 is device id of device and 0x1425 for
chelsio inc
card_ok=false;
y2milestone("Filtering out Chelsio device without device file.");
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |