From 00742163d72bd07ed9b9dfd953cea1ec9048056f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Sep 2022 20:22:14 +0800 Subject: [PATCH] update 2022-09-24 20:22:14 --- luci-app-amlogic/Makefile | 2 +- luci-app-amlogic/root/usr/sbin/openwrt-update-rockchip | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) 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"