[yast-commit] r52790 - in /trunk/network: VERSION package/yast2-network.changes src/lan/hardware.ycp
Author: mzugec Date: Fri Oct 31 13:48:50 2008 New Revision: 52790 URL: http://svn.opensuse.org/viewcvs/yast?rev=52790&view=rev Log: for devices without hwinfo (bridge, vlan, ...) dont propose STARTMODE ifpluge, propose STARTMODE='auto' Modified: trunk/network/VERSION trunk/network/package/yast2-network.changes trunk/network/src/lan/hardware.ycp Modified: trunk/network/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/VERSION?rev=52790&r1=52789&r2=52790&view=diff ============================================================================== --- trunk/network/VERSION (original) +++ trunk/network/VERSION Fri Oct 31 13:48:50 2008 @@ -1 +1 @@ -2.17.49 +2.17.50 Modified: trunk/network/package/yast2-network.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/package/yast2-network.changes?rev=52790&r1=52789&r2=52790&view=diff ============================================================================== --- trunk/network/package/yast2-network.changes (original) +++ trunk/network/package/yast2-network.changes Fri Oct 31 13:48:50 2008 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Oct 31 12:19:25 CET 2008 - mzugec@suse.de + +- for devices without hwinfo (bridge, vlan, ...) dont propose + STARTMODE ifpluge, propose STARTMODE='auto' +- 2.14.50 + +------------------------------------------------------------------- Thu Oct 30 10:52:58 CET 2008 - mzugec@suse.de - increase time to wait for NM to 15 seconds (bnc#439915) Modified: trunk/network/src/lan/hardware.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/network/src/lan/hardware.ycp?rev=52790&r1=52789&r2=52790&view=diff ============================================================================== --- trunk/network/src/lan/hardware.ycp (original) +++ trunk/network/src/lan/hardware.ycp Fri Oct 31 13:48:50 2008 @@ -511,6 +511,11 @@ LanItems::Items[LanItems::current, "ifcfg"]= nm; //Initialize udev map, so that setDriver (see below) sets correct module LanItems::Items[LanItems::current, "udev"]= $[]; + //FIXME: for interfaces with no hwinfo don't propose ifplugd + if (size(LanItems::getCurrentItem()["hwinfo"]:$[])==0) { + y2milestone("interface without hwinfo, proposing STARTMODE=auto"); + LanItems::startmode="auto"; + } } string driver = (string) UI::QueryWidget(`modul, `Value); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
mzugec@svn.opensuse.org