X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fscripts%2Fsnap-wrapper.sh;fp=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fscripts%2Fsnap-wrapper.sh;h=4337c61e95376a5281e79a126eda2302e5b0e36c;hb=e26c1ec581be598521517829adba8c8dd23a768f;hp=0000000000000000000000000000000000000000;hpb=6699c1aea74eeb0eb400e6299079f0c7576f716f;p=iec.git diff --git a/src/type3_AndroidCloud/anbox-master/scripts/snap-wrapper.sh b/src/type3_AndroidCloud/anbox-master/scripts/snap-wrapper.sh new file mode 100644 index 0000000..4337c61 --- /dev/null +++ b/src/type3_AndroidCloud/anbox-master/scripts/snap-wrapper.sh @@ -0,0 +1,60 @@ +#!/bin/bash + +if [ "$SNAP_ARCH" = "amd64" ]; then + ARCH="x86_64-linux-gnu" +elif [ "$SNAP_ARCH" = "armhf" ]; then + ARCH="arm-linux-gnueabihf" +else + ARCH="$SNAP_ARCH-linux-gnu" +fi + +# With recent builds on Ubuntu 16.04 the snap does not find the path to +# libpulsecommon-8.0.so anymore so we have to teach the linker manually +# where it can be found +export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$SNAP/usr/lib/$ARCH/pulseaudio" + +# liblxc.so.1 is in $SNAP/lib +export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$SNAP/lib" + +export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$SNAP/usr/lib/$ARCH" + +# We set XDG_DATA_HOME to SNAP_USER_COMMON here as this will be the location we will +# create all our application launchers in. The system application launcher will +# be configured by our installer to look into this directory for available +# launchers. +export XDG_DATA_HOME="$SNAP_USER_COMMON/app-data" + +# In order to support GLVND based systems we need to work around a bug in snapd +# as it does not yet expose the EGL vendor configurations from the host to snaps. +# As long as this isn't fixed we have to carry a set of configs on our own which +# may map to the host. GLVND will handle situation properly where a vendor is +# configured but the actual EGL implementation is missing. +export __EGL_VENDOR_LIBRARY_DIRS="$SNAP/glvnd" + +# Suppress "libEGL warning: FIXME: egl/x11 doesn't support front buffer rendering." spam +export EGL_LOG_LEVEL="fatal" + +enable_debug="$(snapctl get debug.enable)" +if [ "$enable_debug" = true ]; then + export ANBOX_LOG_LEVEL=debug +fi + +if [ "$(snapctl get software-rendering.enable)" = true ]; then + export ANBOX_FORCE_SOFTWARE_RENDERING=true +fi + +if [ "$(snapctl get touch-emulation.enable)" = false ]; then + export ANBOX_ENABLE_TOUCH_EMULATION=false +fi + +if [ "$(snapctl get server-side-decoration.enable)" = true ]; then + export ANBOX_FORCE_SERVER_SIDE_DECORATION=true +fi + +# Use custom Anbox binary for debugging purposes if available +ANBOX="$SNAP"/usr/bin/anbox +if [ -e "$SNAP_COMMON"/anbox.debug ]; then + ANBOX="$SNAP_COMMON"/anbox.debug +fi + +exec "$ANBOX" "$@"