在ubuntu19.10上编译openwrt19.07
在ubuntu19.10上编译openwrt19.07
背景
手上有一块任子行的NET110(88F6281)的路由器,还有一块环硕科技(公司已倒闭)的路由器,同样基于88F6281 A1,由于较为小众,固件需要自行编译,本文内容完全是作者自己在编译过程中的血泪史,如果你遇到同样的问题,可以一起交流.
准备
之前使用archlinux编译openwrt的估计,但是出现各种各样玄学问题,再加上梯子不稳定,后续直接转移到梯子上进行编译,虽说速度有点儿慢.
安装编译环境
1 |
|
下载openwrt并更新相关组件
1 |
|
make prereq
./scripts/feeds update -a
./scripts/feeds install -a
1 |
|
make defconfig
1 |
|
make target/linux/clean V=99
make target/linux/prepare V=99
make target/linux/update V=99
1 |
|
make V=s -j99 IGNORE_ERRORS=1 FORCE_UNSAFE_CONFIGURE=1
1 |
|
./scripts/feeds updata -a
./scripts/feeds install libxxx
1 |
|
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile
1 |
|
sudo swapoff /swapfile
sudo rm /swapfile
### 3.compile devicetree.dts error: Unable to parse input tree
这个错误很可能是我们在写节点时多加了或者少写了“}”符号造成的,特别是节点里面包含了一些子节点的情况下,很容易少加“}”符号。
解决思路:由于gedit打开dts文件,dts内容的层次结构不好一眼看出,需要把dts内容copy到sourceinsight、UlterEdit或者其他文本工具里编辑,总之一点能让dts内容层次分明。这样一下就可以定位是那个节点存在少加或者多加‘}’符号。
### 4.固件可以在板子上运行,但是找不到网卡,这个有些尴尬,固件还是不完美,目前也没时间去玩了,各位看官可以尝试解决一下
## 参考
* [https://forum.openwrt.org/t/solved-build-error-make-toplevel-mk-world-error-2/47478](https://forum.openwrt.org/t/solved-build-error-make-toplevel-mk-world-error-2/47478)
* [https://blog.csdn.net/walker0411/article/details/51916959](https://blog.csdn.net/walker0411/article/details/51916959)
* [https://blog.csdn.net/flexman09/article/details/51862858?utm_source=itdadao&utm_medium=referral](https://blog.csdn.net/flexman09/article/details/51862858?utm_source=itdadao&utm_medium=referral)
* [https://www.cnblogs.com/hubery/p/4633863.html](https://www.cnblogs.com/hubery/p/4633863.html)
* [https://blog.csdn.net/renlonggg/article/details/53784509](https://blog.csdn.net/renlonggg/article/details/53784509)
* [https://openwrt.org/docs/guide-developer/quickstart-build-images](https://openwrt.org/docs/guide-developer/quickstart-build-images)
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!