[yast-commit] r62867 - in /trunk/live-installer: package/yast2-live-installer.changes src/live-installer.ycp
Author: jsrain Date: Thu Nov 18 13:07:53 2010 New Revision: 62867 URL: http://svn.opensuse.org/viewcvs/yast?rev=62867&view=rev Log: suppress memory warning if live installer is running directly from boot scripts (bnc#547743) Modified: trunk/live-installer/package/yast2-live-installer.changes trunk/live-installer/src/live-installer.ycp Modified: trunk/live-installer/package/yast2-live-installer.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/live-installer/package/yast2-live-installer.changes?rev=62867&r1=62866&r2=62867&view=diff ============================================================================== --- trunk/live-installer/package/yast2-live-installer.changes (original) +++ trunk/live-installer/package/yast2-live-installer.changes Thu Nov 18 13:07:53 2010 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Nov 18 13:12:37 UTC 2010 - jsrain@suse.cz + +- suppress memory warning if live installer is running directly + from boot scripts (bnc#547743) + +------------------------------------------------------------------- Tue Oct 12 13:32:37 UTC 2010 - lslezak@suse.cz - don't use obsoleted inst_packages.ycp client, use PackagesUI.ycp Modified: trunk/live-installer/src/live-installer.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/live-installer/src/live-installer.ycp?rev=62867&r1=62866&r2=62867&view=diff ============================================================================== --- trunk/live-installer/src/live-installer.ycp (original) +++ trunk/live-installer/src/live-installer.ycp Thu Nov 18 13:07:53 2010 @@ -35,7 +35,11 @@ integer memsize = memories[0,"resource","phys_mem",0,"range"]:0; integer oneGB = 1073741824; y2milestone ("Physical memory %1", memsize); - if (memsize < oneGB) { + + string cmd = "cat /proc/cmdline | grep -q liveinstall"; + boolean live_only = (0 == (integer)SCR::Execute (.target.bash, cmd)); + + if (memsize < oneGB && ! live_only) { // pop-up, %1 is memory size, currently hardcoded "1 GB" if (! Popup::ContinueCancel (sformat (_("Your computer has less than %1 of memory. This may not be sufficient for the live installation, especially when installing @@ -72,7 +76,7 @@ // detect removable media, if they are mounted, they cannot be used for installation (bnc #437235) // this is a hack, since partitioner cannot provide information which partitions will be resized, // removed or formatted and thus mustn't be mounted during installation - string cmd = "cat /proc/mounts |grep '\/media\/'"; + cmd = "cat /proc/mounts |grep '\/media\/'"; if (0 == (integer)SCR::Execute (.target.bash, cmd)) { // continue/cancel pop-up -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsrain@svn2.opensuse.org