update 2024-04-01 20:00:50

This commit is contained in:
actions-user 2024-04-01 20:00:50 +08:00
parent db80fc7021
commit 36a6bf58e0
2 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-amlogic
PKG_VERSION:=3.1.228
PKG_VERSION:=3.1.229
PKG_RELEASE:=1
PKG_LICENSE:=GPL-2.0 License

View File

@ -122,7 +122,11 @@ else
kernel_tag="stable"
fi
fi
# Remove the kernel_ prefix
kernel_tag="${kernel_tag/kernel_/}"
# If the kernel tag is a number, it is converted to a stable branch
[[ "${kernel_tag}" =~ ^[1-9]+ ]] && kernel_tag="stable"
# Step 2: Check if there is the latest kernel version
check_kernel() {