#!/bin/sh ################################################################################ # This file is part of OpenELEC - http://www.openelec.tv # Copyright (C) 2014 Stephan Raue (stephan@openelec.tv) # # OpenELEC is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # OpenELEC is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with OpenELEC. If not, see . ################################################################################ # check the Security chip if we run on a WeTek device lsusb -d 096e:0006 &> /dev/null LSUSB_RET=$? if [ -f /storage/.config/remote.conf ]; then /usr/bin/remotecfg /storage/.config/remote.conf elif [ -f /etc/amremote/remote.conf ]; then /usr/bin/remotecfg /etc/amremote/remote.conf elif [ "$LSUSB_RET" = 0 ]; then /usr/bin/remotecfg /etc/amremote/wetek.conf elif [ "$LSUSB_RET" = 1 ]; then /usr/bin/remotecfg /etc/amremote/libreelec.conf fi