Author: locilka Date: Wed Jul 4 16:18:45 2007 New Revision: 39171 URL: http://svn.opensuse.org/viewcvs/yast?rev=39171&view=rev Log: - Fixed workflow when user selects to Boot the installed system and then cancels that decision. - 2.15.31 Modified: trunk/installation/VERSION trunk/installation/package/yast2-installation.changes trunk/installation/src/clients/inst_system_analysis.ycp Modified: trunk/installation/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/VERSION?rev=39171&r1=39170&r2=39171&view=diff ============================================================================== --- trunk/installation/VERSION (original) +++ trunk/installation/VERSION Wed Jul 4 16:18:45 2007 @@ -1 +1 @@ -2.15.30 +2.15.31 Modified: trunk/installation/package/yast2-installation.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/package/yast2-installation.changes?rev=39171&r1=39170&r2=39171&view=diff ============================================================================== --- trunk/installation/package/yast2-installation.changes (original) +++ trunk/installation/package/yast2-installation.changes Wed Jul 4 16:18:45 2007 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Jul 4 16:16:37 CEST 2007 - locilka@suse.cz + +- Fixed workflow when user selects to Boot the installed system and + then cancels that decision. +- 2.15.31 + +------------------------------------------------------------------- Mon Jul 2 15:38:27 CEST 2007 - locilka@suse.cz - Applied patch from sassmann@novell.com for PS3 support with Modified: trunk/installation/src/clients/inst_system_analysis.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/src/clients/inst_system_analysis.ycp?rev=39171&r1=39170&r2=39171&view=diff ============================================================================== --- trunk/installation/src/clients/inst_system_analysis.ycp (original) +++ trunk/installation/src/clients/inst_system_analysis.ycp Wed Jul 4 16:18:45 2007 @@ -578,13 +578,15 @@ // Boot was selected if (new_mode == `boot) { - symbol ret = handle_boot(); + symbol hb_ret = handle_boot(); y2milestone ("handle_boot() returned '%1'", ret); - if (ret != `finish) { + if (hb_ret != `finish) { y2milestone("Not booting any OS"); ret = nil; continue; + } else { + y2milestone ("Booting..."); } } } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org