From bfcee62ea2fbfb4a68fd0e79fba05b41dcd186af Mon Sep 17 00:00:00 2001 From: wukongdaily <2666180@gmail.com> Date: Sun, 18 May 2025 13:08:22 +0800 Subject: [PATCH] modfiy is-opkg install method --- 64bit/is-opkg.sh | 8 +++++--- be3600.sh | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/64bit/is-opkg.sh b/64bit/is-opkg.sh index 16d316e..7910e4f 100644 --- a/64bit/is-opkg.sh +++ b/64bit/is-opkg.sh @@ -18,7 +18,8 @@ OPKG_CONF_DIR_M=${IS_ROOT}/etc/opkg_m FEEDS_SERVER=https://istore.istoreos.com/repo FEEDS_SERVER_MIRRORS="https://repo.istoreos.com/repo" DISABLE_MIRROR=false -ARCH="aarch64_cortex-a53" +#ARCH="aarch64_cortex-a53" +ARCH=`sed -n -e 's/^Architecture: *\([^ ]\+\) *$/\1/p' /rom/usr/lib/opkg/info/libc.control /usr/lib/opkg/info/libc.control 2>/dev/null | head -1` # for istore self upgrade ISTORE_PKG=luci-app-store ISTORE_DEP_PKGS="luci-lib-taskd luci-lib-xterm taskd" @@ -252,8 +253,9 @@ case $action in update ;; "install") - check_space - wrapped_in_update opkg_wrap_mirrors install "$@" && try_upgrade_depends "$1" && try_autoconf + opkg install "$1" + #check_space + #wrapped_in_update opkg_wrap_mirrors install "$@" && try_upgrade_depends "$1" && try_autoconf ;; "autoconf") try_autoconf diff --git a/be3600.sh b/be3600.sh index 080e2e0..7be8906 100644 --- a/be3600.sh +++ b/be3600.sh @@ -69,6 +69,7 @@ do_istore() { #添加istore软件源 wget -O /etc/opkg/customfeeds.conf https://cafe.cpolar.top/wkdaily/be3600/raw/branch/master/64bit/customfeeds.conf + opkg update }