参考了网上很多文章,谢谢各位大牛
1)使用ubuntu系统,不建议使用redhat,个人认为ubuntu在操作上比redhat简单,尤其是我在redhat上安装git,碰到zlib.h问题,解决不了,装完zlib,系统就启动不起来
2)使用ubuntu自带的源apt-get即可
3)安装各种openwrt编译需要的组件
sudo apt-get install g++
sudo apt-get install libncurses5-dev
sudo apt-get install zlib1g-dev
sudo apt-get install bison
sudo apt-get install flex
sudo apt-get install unzip
sudo apt-get install autoconf
sudo apt-get install gawk
sudo apt-get install make
sudo apt-get install gettext
sudo apt-get install gcc
sudo apt-get install binutils
sudo apt-get install patch
sudo apt-get install bzip2
sudo apt-get install libz-dev
sudo apt-get install asciidoc
sudo apt-get install subversion
sudo apt-get install git
sudo apt-get install libssl-dev
sudo apt-get install libssl0.9.8
可能还有点儿,我忘了,其实很简单 openwrit make deconfig make menuconfig的时候,会报这些插件没有,需要安装,不过先安装过比较好
4)下载openwrt
https://dev.openwrt.org/wiki/GetSource 这个网上有最新的openwrt,我下载的是15.05,14.07中没有mac80211
git clone -b chaos_calmer git://github.com/openwrt/openwrt.git5)在openwrt目录下更新需要的包,vim feeds.conf.default,把我们需要的包,即前面的#号去掉
./script/ feeds update -a
./script/feeds install -a
执行这些命令后,会生成一个feeds文件,里面就有下载的luci等文件及目录
6)make defconfig 而不是make deconfig
7)make menuconfig
我的是7620a的板子 第一项选择ralink288x 第二项选择 MT7620 第三项选择的是 mt7620-evn(也不知道对不对),现在还在编译中