diff options
| author | Simon Rettberg | 2013-05-09 19:53:28 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2013-05-09 19:53:28 +0200 |
| commit | ed29b377f18dce6a0baec2c29754e42794435453 (patch) | |
| tree | 759b2443548833a794081b535b1274c027dbc585 /remote/modules/vmplayer/data | |
| parent | Merge branch 'master' of simonslx:openslx-ng/tm-scripts (diff) | |
| download | tm-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-x | remote/modules/vmplayer/data/bin/vmplayer | 6 |
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 $@ |
