summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-internal
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-07-10 10:07:49 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-17 10:53:56 +0100
commit9e5bce826abe2e50dd7395c2b26d84fe0edaf45c (patch)
treef3373821e5c8c3923a8125fa193f98d65a906106 /scripts/runqemu-internal
parente21c59e020bd16d8f3395dd9a9c7d1431c495771 (diff)
downloadpoky-9e5bce826abe2e50dd7395c2b26d84fe0edaf45c.tar.gz
runqemu: Fix running qemu when build without gl
When gl is disabled in PACKAGECONFIG then we dont need to check for supporting libs to be present before running qemu. (From OE-Core rev: 6612873dc59054e6d37fa7488226218bfb759127) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-xscripts/runqemu-internal17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index a21ea93c9b..eeadb24ebe 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -468,6 +468,23 @@ if [ ! -x "$QEMUBIN" ]; then
468 return 468 return
469fi 469fi
470 470
471NEED_GL=`ldd $QEMUBIN/$QEMU 2>&1 | grep libGLU`
472# We can't run without a libGL.so
473if [ "$NEED_GL" != "" ]; then
474 libgl='no'
475
476 [ -e /usr/lib/libGL.so -a -e /usr/lib/libGLU.so ] && libgl='yes'
477 [ -e /usr/lib64/libGL.so -a -e /usr/lib64/libGLU.so ] && libgl='yes'
478 [ -e /usr/lib/*-linux-gnu/libGL.so -a -e /usr/lib/*-linux-gnu/libGLU.so ] && libgl='yes'
479
480 if [ "$libgl" != 'yes' ]; then
481 echo "You need libGL.so and libGLU.so to exist in your library path to run the QEMU emulator.
482 Ubuntu package names are: libgl1-mesa-dev and libglu1-mesa-dev.
483 Fedora package names are: mesa-libGL-devel mesa-libGLU-devel."
484 exit 1;
485 fi
486fi
487
471do_quit() { 488do_quit() {
472 if [ -n "$PIDFILE" ]; then 489 if [ -n "$PIDFILE" ]; then
473 #echo kill `cat $PIDFILE` 490 #echo kill `cat $PIDFILE`