update 2024-12-17 12:26:43

This commit is contained in:
kenzok8
2024-12-17 12:26:43 +08:00
parent 3461ad42b5
commit 37433fe1fe
14 changed files with 364 additions and 190 deletions

View File

@@ -11,7 +11,7 @@ LUCI_DEPENDS:=+curl +opkg +luci-base +tar +libuci-lua +mount-utils +luci-lib-tas
LUCI_EXTRA_DEPENDS:=luci-lib-taskd (>=1.0.19)
LUCI_PKGARCH:=all
PKG_VERSION:=0.1.27-2
PKG_VERSION:=0.1.27-3
# PKG_RELEASE MUST be empty for luci.mk
PKG_RELEASE:=

View File

@@ -74,7 +74,7 @@ opkg_wrap_mirrors() {
alias fcurl='curl -L --fail --show-error'
check_space() {
local free="$((`df -k / | awk 'NR==2 {print $4}'` >> 10 ))"
local free="$((`df -kP / | awk 'NR==2 {print $4}'` >> 10 ))"
if [ "$free" -lt 1 ]; then
echo "Root disk full!" >&2
exit 1