[yast-commit] r67248 - /branches/SuSE-Code-11-SP2-Branch/network/src/routines/routines.ycp
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@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jreidinger@svn2.opensuse.org