当前位置: 首页 > 工具软件 > OpenWrt > 使用案例 >

openwrt笔记

仲孙逸明
2023-12-01

前提一定需要网络状况ok,具体不做过多解释。

一、拉取源码部分

拉取lede大佬源码

git clone https://github.com/coolsnowwolf/lede

拉取官方源码

git clone git://github.com/openwrt/openwrt.git

 

拉取Lienol大佬源码

git clone https://github.com/Lienol/openwrt op19

天灵

git clone -b openwrt-18.06-k5.4 --single-branch https://github.com/immortalwrt/immortalwrt.git

二、进入源码目录

cd xx          (xx就就是你源码所在的目录)

cd lede
cd openwrt
cd op19

三、源码编译前准备(可跳过)

查看当前版本分支

git branch -a

查看所有分支

git tag

选择想要的版本(范例为v19.07.5)

git checkout v19.07.5

再次确定当前版本

git branch -a

四、下载 feeds 源码

下载

./scripts/feeds update -a

安装

./scripts/feeds install -a

五、调整系统组件

make menuconfig

六、下载dl库

make download -j8 V=s

七、开始编译

首次建议单线程编译(-j1) 输出编译日志(V=s)

make -j1 V=s

 类似资料: