Hi,
I'm trying to build rasplex with the support of the mt7610u in order to use my Archer T1U on raspberry pi3.
I can't make it works after several test. Does anyone can help me on this issue ?
Code
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# Copyright (C) 2009-2016 Stephan Raue ([email protected])
#
# 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 <http://www.gnu.org/licenses/>.
################################################################################
PKG_NAME="mt7610u"
PKG_VERSION="930"
PKG_REV="1"
PKG_ARCH="arm"
PKG_LICENSE="GPL"
PKG_SITE="https://d86o2zu8ugzlg.cloudfront.net/mediatek-craft/drivers/mt7610u_wifi_sta_v3002_dpo_20130916.tar.bz2"
PKG_URL="https://d86o2zu8ugzlg.cloudfront.net/mediatek-craft/drivers/mt7610u_wifi_sta_v3002_dpo_20130916.tar.bz2"
PKG_SOURCE_DIR="mt7610u"
PKG_DEPENDS_TARGET="toolchain linux"
PKG_PRIORITY="optional"
PKG_SECTION="driver"
PKG_SHORTDESC="Mediatek MT7610u 4.x driver"
PKG_LONGDESC="Mediatek MT7610u 4.x driver"
PKG_IS_ADDON="no"
PKG_AUTORECONF="no"
post_unpack() {
cp -f os/linux/Makefile.clean os/linux/Makefile
}
#unpack() {
#(
#mkdir -p $ROOT/$PKG_BUILD
#mv $BUILD/install.sh $ROOT/$PKG_BUILD
#mv $BUILD/RT2870STA.dat $ROOT/$PKG_BUILD
#mv $BUILD/mt7610u_sta.ko $ROOT/$PKG_BUILD
#mv $BUILD/95-ralink.rules $ROOT/$PKG_BUILD
# )
#}
make_target() {
# mkdir $ROOT/$PKG_BUID
# tar xf $ROOT/$PKG_BUILD/mt7610-4.4.34-v7-930.tar.gz -C $ROOT/$PKG_BUILD
chmod -R u+rwX $ROOT/$PKG_BUILD/*
}
makeinstall_target() {
make -C os/linux clean
mkdir -p $INSTALL/lib/modules/$(get_module_dir)/$PKG_NAME
mkdir -p $INSTALL/etc/Wireless/RT2870STA/
cp RT2870STA.dat $INSTALL/etc/Wireless/RT2870STA/
cp *.ko $INSTALL/lib/modules/$(get_module_dir)/$PKG_NAME
}
Display More
in udev.d:
PS: I was able to make it works on raspbian.
Thanks