opwenwrt交叉编译(二)——交叉编译环境的搭建(Ubuntu)

时间:2021-12-29 09:25:34

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