diff --git a/luci-app-amlogic/Makefile b/luci-app-amlogic/Makefile index a8f541c80..9afdf680f 100644 --- a/luci-app-amlogic/Makefile +++ b/luci-app-amlogic/Makefile @@ -16,7 +16,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-amlogic -PKG_VERSION:=3.1.126 +PKG_VERSION:=3.1.127 PKG_RELEASE:=1 PKG_LICENSE:=GPL-2.0 License diff --git a/luci-app-amlogic/root/usr/sbin/openwrt-update-rockchip b/luci-app-amlogic/root/usr/sbin/openwrt-update-rockchip index 4df7e44e9..0b1ca40b4 100755 --- a/luci-app-amlogic/root/usr/sbin/openwrt-update-rockchip +++ b/luci-app-amlogic/root/usr/sbin/openwrt-update-rockchip @@ -41,6 +41,13 @@ elif [[ "$(echo ${MYDEVICE_NAME} | grep "BeikeYun")" != "" ]]; then MYDTB_FDTFILE="rk3328-beikeyun-1296mhz.dtb" fi SOC="beikeyun" +elif [[ "$(echo ${MYDEVICE_NAME} | grep "FastRhino R66S")" != "" ]]; then + if [ -n "$CURRENT_FDTFILE" ];then + MYDTB_FDTFILE="$CURRENT_FDTFILE" + else + MYDTB_FDTFILE="rk3568-fastrhino-r66s.dtb" + fi + SOC="r66s" elif [[ "$(echo ${MYDEVICE_NAME} | grep "FastRhino R68S")" != "" ]]; then if [ -n "$CURRENT_FDTFILE" ];then MYDTB_FDTFILE="$CURRENT_FDTFILE"