Author: lslezak Date: Thu Oct 1 11:17:26 2009 New Revision: 58861 URL: http://svn.opensuse.org/viewcvs/yast?rev=58861&view=rev Log: - convert all '_' to '-' in hwinfo driver name (bnc#290279) - 2.18.3 Modified: trunk/sound/VERSION trunk/sound/package/yast2-sound.changes trunk/sound/sound/src/routines.ycp Modified: trunk/sound/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/sound/VERSION?rev=58861&r1=58860&r2=58861&view=diff ============================================================================== --- trunk/sound/VERSION (original) +++ trunk/sound/VERSION Thu Oct 1 11:17:26 2009 @@ -1 +1 @@ -2.18.2 +2.18.3 Modified: trunk/sound/package/yast2-sound.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/sound/package/yast2-sound.changes?rev=58861&r1=58860&r2=58861&view=diff ============================================================================== --- trunk/sound/package/yast2-sound.changes (original) +++ trunk/sound/package/yast2-sound.changes Thu Oct 1 11:17:26 2009 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Oct 1 11:16:19 CEST 2009 - lslezak@suse.cz + +- convert all '_' to '-' in hwinfo driver name (bnc#290279) +- 2.18.3 + +------------------------------------------------------------------- Mon Sep 21 17:25:25 CEST 2009 - lslezak@suse.cz - Disable PulseAudio in KDE installations (bnc#537784) Modified: trunk/sound/sound/src/routines.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/sound/sound/src/routines.ycp?rev=58861&r1=58860&r2=58861&view=diff ============================================================================== --- trunk/sound/sound/src/routines.ycp (original) +++ trunk/sound/sound/src/routines.ycp Thu Oct 1 11:17:26 2009 @@ -709,11 +709,8 @@ // use value from hwinfo if present modname = card["drivers",0,"modules",0,0]:""; - // covert module name - hwinfo might use _ in module name prefix (e.g. snd_via82xx) - if (substring(modname, 0, size("snd_")) == "snd_") - { - modname = "snd-" + substring(modname, size("snd_")); - } + // convert module name - hwinfo might use _ in module name prefix (e.g. snd_via82xx) + modname = mergestring(splitstring(modname,"_"),"-"); if (modname != "") { -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org