1.初始环境的配置
sudo apt-get update sudo apt-get install git-core build-essential libssl-dev libncurses5-dev unzip gawk
sudo apt-get install subversion mercurial
2.下载源码
note:以下操作必须以非root用户操作,否则需要更改用户
下载对应版本的opwenwrt源码 (可以用SVN和git),在实际过程中发现SVN连接老是有问题,建议用git下载源码 ,如下:
git clone git://git.openwrt.org/15.05/openwrt.git //版本可选(链接中的15.05就是对应的版本号)该过程会在当前的目录下创建openwrt这个目录
3.下载更新feeds
note:缺少这步会有些库找不到
cd openwrt
./scripts/feeds update -a
./scripts/feeds install –a
4. 检查当前编译环境是否缺失包(三选一)
make menuconfig (most likely you would like to use this)
make defconfig
make prereq
相关文章
- Linux嵌入式交叉编译环境 的搭建
- 交叉编译环境的linaro-gdb可以用了,结果打开core文件,显示堆栈都是??
- PC机安装Qt以及QT交叉编译环境 分类: OpenCV ZedBoard shell ubuntu Eye_Detection 2014-11-08 18:57 246人阅读 评论(0) 收藏
- Ubutnu下arm-linux-gcc交叉编译环境的搭建64位和32位都能用
- LINUX之交叉编译环境搭建
- CentOS安装交叉编译环境中遇到的错误和解决办法
- Ubuntu下配置交叉编译环境
- 搭建arm-linux-gcc交叉编译工具链环境(Android原生(JNI)开发环境搭建)
- Golang如何交叉编译各个平台的二进制文件详解
- Ubuntu 12.04下PHP环境的搭建(LAMP)--非编译