NPS-OpenWrt
April 17, 2025 · View on GitHub
NPS OpenWrt repository
NPS 的 OpenWrt 仓库
Usage / 用法
-
Check your system's architecture / 查看当前系统架构:
uname -m -
Install with
opkg/ 使用opkg安装:opkg install *.ipkIf version conflicts occur / 如果版本不兼容,可以强制安装:
opkg install --force-downgrade --force-depends *.ipk
Build / 编译
-
Edit
feeds.confand add the NPS source / 编辑feeds.conf文件,添加 NPS 源:echo "src-git nps https://github.com/djylb/nps-openwrt.git" >> feeds.conf -
Update feeds and install the NPS package / 更新 feeds 并安装 NPS 包:
./scripts/feeds update nps ./scripts/feeds install -a -p nps -
Build / 编译:
make menuconfig make -j$(nproc)