Author: jsrain Date: Mon Oct 27 14:01:50 2008 New Revision: 52584 URL: http://svn.opensuse.org/viewcvs/yast?rev=52584&view=rev Log: added more verbose logging Modified: trunk/reipl/VERSION trunk/reipl/package/yast2-reipl.changes trunk/reipl/src/Reipl.ycp Modified: trunk/reipl/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/reipl/VERSION?rev=52584&r1=52583&r2=52584&view=diff ============================================================================== --- trunk/reipl/VERSION (original) +++ trunk/reipl/VERSION Mon Oct 27 14:01:50 2008 @@ -1 +1 @@ -2.17.0 +2.17.1 Modified: trunk/reipl/package/yast2-reipl.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/reipl/package/yast2-reipl.changes?rev=52584&r1=52583&r2=52584&view=diff ============================================================================== --- trunk/reipl/package/yast2-reipl.changes (original) +++ trunk/reipl/package/yast2-reipl.changes Mon Oct 27 14:01:50 2008 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Mon Oct 27 13:52:16 CET 2008 - jsrain@suse.cz + +- added more verbose logging +- 2.17.1 + +------------------------------------------------------------------- Thu Sep 11 13:18:49 CEST 2008 - locilka@suse.cz - Added reipl_finish to be called from installation. Modified: trunk/reipl/src/Reipl.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/reipl/src/Reipl.ycp?rev=52584&r1=52583&r2=52584&view=diff ============================================================================== --- trunk/reipl/src/Reipl.ycp (original) +++ trunk/reipl/src/Reipl.ycp Mon Oct 27 14:01:50 2008 @@ -246,7 +246,7 @@ // bash-3.1# readlink -m /sys/block/dasda/device // /sys/devices/css0/0.0.0006/0.0.4dcf command = "/usr/bin/readlink -n -m " + FindSysfsRoot () + "/block/" + disk + "/device"; - + y2milestone ("Executing %1", command); result = (map)SCR::Execute (.target.bash_output, command); if (result["exit"]:-1 != 0) { @@ -547,6 +547,7 @@ // rc = SCR::Write (.target.string, ccw_directory + "/loadparm", (string)ccw_map["loadparm"]:nil); echoCmd = "echo \"" + (string)ccw_map["device"]:nil + "\" > " + ccw_directory + "/device"; + y2milestone ("Executing %1", echoCmd); result = (map)SCR::Execute (.target.bash_output, echoCmd); if (result["exit"]:-1 != 0) { y2error ("Error: Writing ccw device returns %1", result["stderr"]:""); @@ -555,6 +556,7 @@ } echoCmd = "echo \"" + (string)ccw_map["loadparm"]:nil + "\" > " + ccw_directory + "/loadparm"; + y2milestone ("Executing %1", echoCmd); result = (map)SCR::Execute (.target.bash_output, echoCmd); if (result["exit"]:-1 != 0) { y2error ("Error: Writing ccw loadparm returns %1", result["stderr"]:""); @@ -585,6 +587,7 @@ y2milestone ("Reipl::WriteState: fcp_map br_lba is now \"%1\"", fcp_map["br_lba"]:"???"); echoCmd = "echo \"" + (string)fcp_map["device"]:nil + "\" > " + fcp_directory + "/device"; + y2milestone ("Executing %1", echoCmd); result = (map)SCR::Execute (.target.bash_output, echoCmd); if (result["exit"]:-1 != 0) { y2error ("Error: Writing fcp device returns %1", result["stderr"]:""); @@ -593,6 +596,7 @@ } echoCmd = "echo \"" + (string)fcp_map["wwpn"]:nil + "\" > " + fcp_directory + "/wwpn"; + y2milestone ("Executing %1", echoCmd); result = (map)SCR::Execute (.target.bash_output, echoCmd); if (result["exit"]:-1 != 0) { y2error ("Error: Writing fcp wwpn returns %1", result["stderr"]:""); @@ -601,6 +605,7 @@ } echoCmd = "echo \"" + (string)fcp_map["lun"]:nil + "\" > " + fcp_directory + "/lun"; + y2milestone ("Executing %1", echoCmd); result = (map)SCR::Execute (.target.bash_output, echoCmd); if (result["exit"]:-1 != 0) { y2error ("Error: Writing fcp lun returns %1", result["stderr"]:""); @@ -609,6 +614,7 @@ } echoCmd = "echo \"" + (string)fcp_map["bootprog"]:nil + "\" > " + fcp_directory + "/bootprog"; + y2milestone ("Executing %1", echoCmd); result = (map)SCR::Execute (.target.bash_output, echoCmd); if (result["exit"]:-1 != 0) { y2error ("Error: Writing fcp bootprog returns %1", result["stderr"]:""); @@ -617,6 +623,7 @@ } echoCmd = "echo \"" + (string)fcp_map["br_lba"]:nil + "\" > " + fcp_directory + "/br_lba"; + y2milestone ("Executing %1", echoCmd); result = (map)SCR::Execute (.target.bash_output, echoCmd); if (result["exit"]:-1 != 0) { y2error ("Error: Writing fcp br_lba returns %1", result["stderr"]:""); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org