|
|
本帖最后由 角色 于 2025-11-13 17:37 编辑
GL.iNet GL-BE6500 / GL-BE3600 + 第三方特殊插件 (kiddin9, ImmortalWrt, Manual)
原先的 opkg configuration 作为参考,现在可以用三种方法——kiddin9, ImmortalWrt, Manual 进行第三方特殊插件。
OPKG Configuration
Below is a listing of the various configuration files used by opkg. Use opkg.conf for global settings and customfeeds.conf for custom repository entries. The configuration in the other files may be changed but is usually not preserved by sysupgrade.
/etc/opkg.conf- dest root /
- dest ram /tmp
- lists_dir ext /var/opkg-lists
- option overlay_root /overlay
复制代码
/etc/opkg/customfeeds.conf- # add your custom package feeds here
- #
- # src/gz example_feed_name http://www.example.com/path/to/files
复制代码
/etc/opkg/distfeeds.conf- src/gz glinet_core https://fw.gl-inet.cn/releases/qsdk_v12.5/kmod-4.7/be9300-ipq53xx
- src/gz glinet_gli_pub https://fw.gl-inet.cn/releases/qsdk_v12.5/packages-4.x/ipq53xx/be9300/glinet
- src/gz opnwrt_packages https://fw.gl-inet.cn/releases/qsdk_v12.5/packages-4.x/ipq53xx/be9300/packages
复制代码 .
########################################################
kiddin9 method
/etc/opkg.conf (combined)- dest root /
- dest ram /tmp
- lists_dir ext /var/opkg-lists
- option overlay_root /overlay
- arch all 1
- arch noarch 1
- arch aarch64_cortex-a53 5
- arch aarch64_cortex-a53_neon-vfpv4 10
复制代码
/etc/opkg/customfeeds.conf- # add your custom package feeds here
- #
- # src/gz example_feed_name http://www.example.com/path/to/files
- src/gz openwrt_kiddin9 https://dl.openwrt.ai/latest/packages/aarch64_cortex-a53/kiddin9
复制代码
/etc/opkg/distfeeds.conf (same as before)- src/gz glinet_core https://fw.gl-inet.cn/releases/qsdk_v12.5/kmod-4.7/be9300-ipq53xx
- src/gz glinet_gli_pub https://fw.gl-inet.cn/releases/qsdk_v12.5/packages-4.x/ipq53xx/be9300/glinet
- src/gz opnwrt_packages https://fw.gl-inet.cn/releases/qsdk_v12.5/packages-4.x/ipq53xx/be9300/packages
复制代码
########################################################
ImmortalWrt method
/etc/opkg.conf (added)- arch all 1
- arch noarch 1
- arch aarch64_cortex-a53 5
- arch aarch64_cortex-a53_neon-vfpv4 10
复制代码
/etc/opkg/customfeeds.conf (added)- src/gz base downloads.immortalwrt.org/releases/23.05.6/packages/aarch64_cortex-a53/base
- src/gz luci downloads.immortalwrt.org/releases/23.05.6/packages/aarch64_cortex-a53/luci
- src/gz packages downloads.immortalwrt.org/releases/23.05.6/packages/aarch64_cortex-a53/packages
- src/gz routing downloads.immortalwrt.org/releases/23.05.6/packages/aarch64_cortex-a53/routing
- src/gz telephony downloads.immortalwrt.org/releases/23.05.6/packages/aarch64_cortex-a53/telephony
复制代码
########################################################
Manual method
手动方法,一般找到 ipk 源,就可以。
|
|