NPS-OpenWrt

April 17, 2025 · View on GitHub

NPS OpenWrt repository

NPS 的 OpenWrt 仓库


Usage / 用法

  1. Check your system's architecture / 查看当前系统架构:

    uname -m
    
  2. Download the .ipk file from the Release / 从发布页面下载 .ipk 文件.

  3. Install with opkg / 使用 opkg 安装:

    opkg install *.ipk
    

    If version conflicts occur / 如果版本不兼容,可以强制安装:

    opkg install --force-downgrade --force-depends *.ipk
    

Build / 编译

  1. Edit feeds.conf and add the NPS source / 编辑 feeds.conf 文件,添加 NPS 源:

    echo "src-git nps https://github.com/djylb/nps-openwrt.git" >> feeds.conf
    
  2. Update feeds and install the NPS package / 更新 feeds 并安装 NPS 包:

    ./scripts/feeds update nps
    ./scripts/feeds install -a -p nps
    
  3. Build / 编译:

    make menuconfig
    make -j$(nproc)