summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
authorCristian Ciupitu <cristian.ciupitu@yahoo.com>2012-06-29 16:17:26 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-02 16:47:43 +0100
commit9a4b266674e698e4210ac9f01ac51171ca9c2bb2 (patch)
treef8c81c7cbdd430c50b4b2398d6b6a242056f5ef5 /scripts/runqemu
parenta5b2c1e4ce3ad4f2b9ea306c6d10f528c5ef8b66 (diff)
downloadpoky-9a4b266674e698e4210ac9f01ac51171ca9c2bb2.tar.gz
runqemu: fix fedora pkg names when run fails
runqemu can fail to with the following message: You need libGL.so and libGLU.so to exist in your library path to run the QEMU emulator. Fedora package names are: mesa-libGL mesa-libGLU. The libGL.so and libGLU.so files are provided by the mesa-libGL-devel and mesa-libGLU-devel Fedora packages (yum provides '*/libGL*.so'). (From OE-Core rev: f2b6f9c3a8b4f87b5570b78766a118e4290d773a) Signed-off-by: Cristian Ciupitu <cristian.ciupitu@yahoo.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 1e803edd1b..9fdbd5487e 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -394,7 +394,7 @@ libgl='no'
394if [ "$libgl" != 'yes' ]; then 394if [ "$libgl" != 'yes' ]; then
395 echo "You need libGL.so and libGLU.so to exist in your library path to run the QEMU emulator. 395 echo "You need libGL.so and libGLU.so to exist in your library path to run the QEMU emulator.
396 Ubuntu package names are: libgl1-mesa-dev and libglu1-mesa-dev. 396 Ubuntu package names are: libgl1-mesa-dev and libglu1-mesa-dev.
397 Fedora package names are: mesa-libGL mesa-libGLU." 397 Fedora package names are: mesa-libGL-devel mesa-libGLU-devel."
398 exit 1; 398 exit 1;
399fi 399fi
400 400