Check-gl: Modified install script. 58/29858/1
authorminkee.lee <minkee.lee@samsung.com>
Wed, 5 Nov 2014 08:35:58 +0000 (17:35 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Wed, 5 Nov 2014 10:28:14 +0000 (02:28 -0800)
- If install manager is run with CLI, check-gl warning is
  written in log instead of displaying dialog.

Change-Id: Ic052f93eae83d23fdba7b7a2bd96c306c018f00d
Signed-off-by: minkee.lee <minkee.lee@samsung.com>
package/emulator-qemu-x86.install.ubuntu-32
package/emulator-qemu-x86.install.ubuntu-64

index cdd09d8..15eb412 100755 (executable)
@@ -61,24 +61,29 @@ rm ${TMP_FILE}
 # run check-gl and show pop-up if using gallium driver.
 CHECK_GL_CMD=${TIZEN_SDK_INSTALL_PATH}/tools/emulator/bin/check-gl
 
-showGraphicDriverWarning()
-{
-       zenity --error --no-wrap --text="
-You are using invalid graphic card driver for the emulator.
+GL_WARNING_MSG="You are using invalid graphic card driver for the emulator.
 You have to use the lastest vendor-provided graphic card driver.
 
 For more information, see under ubuntu driver help page.
 https://help.ubuntu.com/community/BinaryDriverHowto/ "
-}
 
+showGraphicDriverWarning()
+{
+       zenity --error --no-wrap --text="
+$GL_WARNING_MSG"
+}
 
 $CHECK_GL_CMD
 RET=$?
 echo "check_gl return : $RET"
 if [ "$RET" = "0" ] ; then
-        echo "check-gl ... OK."
+       echo "check-gl ... OK."
 elif [ "$RET" = "2" ] ; then
-        # show warning dialog
-        echo "check-gl ... fail."
-        showGraphicDriverWarning
+       # show warning dialog
+       echo "check-gl ... fail."
+       if [ "$INSTALLMANAGER_UI" = "GUI" ] ; then
+               showGraphicDriverWarning
+       else
+               echo "Warning : $GL_WARNING_MSG"
+       fi
 fi
index b796b4b..15eb412 100755 (executable)
@@ -61,23 +61,29 @@ rm ${TMP_FILE}
 # run check-gl and show pop-up if using gallium driver.
 CHECK_GL_CMD=${TIZEN_SDK_INSTALL_PATH}/tools/emulator/bin/check-gl
 
-showGraphicDriverWarning()
-{
-        zenity --error --no-wrap --text="
-You are using invalid graphic card driver for the emulator.
+GL_WARNING_MSG="You are using invalid graphic card driver for the emulator.
 You have to use the lastest vendor-provided graphic card driver.
 
 For more information, see under ubuntu driver help page.
 https://help.ubuntu.com/community/BinaryDriverHowto/ "
+
+showGraphicDriverWarning()
+{
+       zenity --error --no-wrap --text="
+$GL_WARNING_MSG"
 }
 
 $CHECK_GL_CMD
 RET=$?
 echo "check_gl return : $RET"
 if [ "$RET" = "0" ] ; then
-        echo "check-gl ... OK."
+       echo "check-gl ... OK."
 elif [ "$RET" = "2" ] ; then
-        # show warning dialog
-        echo "check-gl ... fail."
-        showGraphicDriverWarning
+       # show warning dialog
+       echo "check-gl ... fail."
+       if [ "$INSTALLMANAGER_UI" = "GUI" ] ; then
+               showGraphicDriverWarning
+       else
+               echo "Warning : $GL_WARNING_MSG"
+       fi
 fi