summaryrefslogtreecommitdiffstats
path: root/remote/modules/vmplayer/data
diff options
context:
space:
mode:
authorSimon Rettberg2013-05-09 19:53:28 +0200
committerSimon Rettberg2013-05-09 19:53:28 +0200
commited29b377f18dce6a0baec2c29754e42794435453 (patch)
tree759b2443548833a794081b535b1274c027dbc585 /remote/modules/vmplayer/data
parentMerge branch 'master' of simonslx:openslx-ng/tm-scripts (diff)
downloadtm-scripts-ed29b377f18dce6a0baec2c29754e42794435453.tar.gz
tm-scripts-ed29b377f18dce6a0baec2c29754e42794435453.tar.xz
tm-scripts-ed29b377f18dce6a0baec2c29754e42794435453.zip
more updates to vmplayer (finally works)
Diffstat (limited to 'remote/modules/vmplayer/data')
-rwxr-xr-xremote/modules/vmplayer/data/bin/vmplayer6
1 files changed, 4 insertions, 2 deletions
diff --git a/remote/modules/vmplayer/data/bin/vmplayer b/remote/modules/vmplayer/data/bin/vmplayer
index d4cd1d65..874c3d96 100755
--- a/remote/modules/vmplayer/data/bin/vmplayer
+++ b/remote/modules/vmplayer/data/bin/vmplayer
@@ -1,8 +1,10 @@
#!/bin/sh
for mod in /lib/modules/vmware/*.ko; do
- insmod "$mod" || xmessage "Could not load kernel module $mod. vmplayer might fail."
+ insmod "$mod" && continue
+ xmessage "Could not load kernel module $mod. vmplayer might fail."
done
-/bin/vmplayer-bin $@
+export LIBCONF_DIR=/usr/lib/vmware/libconf
+/usr/lib/vmware/bin/vmplayer $@