openwrt整个版本入git库

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u010687717/article/details/84560323
  1. git clone git://git.openwrt.org/openwrt/openwrt.git,如果只有https代理,可以使用git clone https://git.openwrt.org/openwrt/openwrt.git
  2. ./scripts/feeds update -a
  3. ./scripts/feeds install -a
  4. find . -name .git | xargs rm -r
  5. find . -name .github |xargs rm -r
  6. find . -name .gitignore |xargs rm -r
  7. make menuconfig,然后编译
  8. rm build_dir/ staging_dir/ tmp/ bin/ -rf 
  9. 入git库

猜你喜欢

转载自blog.csdn.net/u010687717/article/details/84560323