自编译OpenWRT固件

编译固件添加SSR+

编辑lede 目录下feeds.conf.default 文件,去掉下面的注释

src-git helloworld https://github.com/fw876/helloworld

执行下面的命令进行编译

./scripts/feeds update -a
./scripts/feeds install -a
make menuconfig
make -j8 download V=s
make -j1 V=s

二次编译:
1. git pull 
2. rm -rf ./tmp && rm -rf .config
3. 编辑lede 目录下feeds.conf.default 文件,添加
src-git helloworld https://github.com/fw876/helloworld
4. ./scripts/feeds clean
./scripts/feeds update -a && ./scripts/feeds install -a
5. make menuconfig
6. make -j8 download
make -j$(($(nproc) + 1)) V=s

git pull的时候可能会报错,执行
1 git reset --hard
2 git pull
就可以修复。

参考链接:
https://ssr.tools/1420

https://github.com/coolsnowwolf/lede/issues/4410

https://github.com/fw876/helloworld

自编译OpenWRT固件,支持NanoPi NEO2(深度定制)
https://www.wygdbb.com/2020/05/19/diy-openwrt-for-pi-plus/

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

*

code

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据