➜ openwrt git:(master) ✗ make menuconfig Checking 'working-make'... ok. . . . Checking 'svn'... ok. Checking 'git'... failed. Checking 'file'... ok. Checking 'openssl'... ok. Checking 'ldconfig-stub'... ok.
git config --global user.name "xxx" git config --global user.email "xxx@gmail.com" git config --global alias ci commit git config --global alias dog log --all --decorate --oneline --graph git config --global alias mg merge
vi ~/.gitconfig 直接修改文件配置也可以
1 2 3 4 5 6 7 8 9 10
[user] name = xxx email = xxx@gmail.com [alias] co = checkout br = branch ci = commit st = status dog = log --all --decorate --oneline --graph mg = merge
Preparing, configuring and building the necessary tools
1 2 3 4 5 6 7 8 9 10 11
cd ~ mkdir buidbot cd ~/buildbot git clone https://git.openwrt.org/openwrt/openwrt.git source cd /home/buildbot/source git checkout v17.01.2 make distclean ./scripts/feeds update -a ./scripts/feeds install -a make menuconfig make toolchain/install