#!/bin/sh

device="$(getprop ro.product.device 2>/dev/null)"
script="/usr/share/bluetooth-touch/${device}"

if [ ! -f "${script}" ]; then
    script="/usr/share/bluetooth-touch/android.sh"
fi

exec /bin/sh "${script}"
