91 lines
2.2 KiB
Markdown
91 lines
2.2 KiB
Markdown
|
## 注意
|
|||
|
|
|||
|
1. **不要用 root 用户进行编译**
|
|||
|
2. 国内用户编译前最好准备好梯子
|
|||
|
3. 默认登陆IP 192.168.1.1 密码 password
|
|||
|
|
|||
|
## 编译命令
|
|||
|
|
|||
|
1. 首先装好 Linux 系统,推荐 Debian 11 或 Ubuntu LTS
|
|||
|
|
|||
|
2. 安装编译依赖
|
|||
|
|
|||
|
```bash
|
|||
|
|
|||
|
sudo apt update -y
|
|||
|
|
|||
|
sudo apt full-upgrade -y
|
|||
|
|
|||
|
sudo apt install -y ack antlr3 aria2 asciidoc autoconf automake autopoint binutils bison build-essential \
|
|||
|
bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib \
|
|||
|
git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libglib2.0-dev libgmp3-dev libltdl-dev \
|
|||
|
libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libreadline-dev libssl-dev libtool lrzsz \
|
|||
|
mkisofs msmtp nano ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 python3-pip libpython3-dev qemu-utils \
|
|||
|
rsync scons squashfs-tools subversion swig texinfo uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev
|
|||
|
```
|
|||
|
|
|||
|
3. 下载源代码,更新 feeds 并选择配置
|
|||
|
|
|||
|
```bash
|
|||
|
git clone https://github.com/coolsnowwolf/lede
|
|||
|
cd lede
|
|||
|
./scripts/feeds update -a
|
|||
|
./scripts/feeds install -a
|
|||
|
make menuconfig
|
|||
|
```
|
|||
|
|
|||
|
4. 下载 dl 库,编译固件
|
|||
|
(-j 后面是线程数,第一次编译推荐用单线程)
|
|||
|
|
|||
|
```bash
|
|||
|
make download -j8
|
|||
|
make V=s -j1
|
|||
|
```
|
|||
|
|
|||
|
5. 二次编译:
|
|||
|
|
|||
|
```bash
|
|||
|
cd lede
|
|||
|
git pull
|
|||
|
./scripts/feeds update -a
|
|||
|
./scripts/feeds install -a
|
|||
|
make defconfig
|
|||
|
make download -j8
|
|||
|
make V=s -j$(nproc)
|
|||
|
```
|
|||
|
|
|||
|
6. 如果需要重新配置:
|
|||
|
|
|||
|
```bash
|
|||
|
rm -rf ./tmp && rm -rf .config
|
|||
|
make menuconfig
|
|||
|
make V=s -j$(nproc)
|
|||
|
```
|
|||
|
|
|||
|
编译完成后输出路径:bin/targets
|
|||
|
|
|||
|
### 如果你使用 WSL/WSL2 进行编译
|
|||
|
|
|||
|
由于 WSL 的 PATH 中包含带有空格的 Windows 路径,有可能会导致编译失败,请在 `make` 前面加上:
|
|||
|
|
|||
|
```bash
|
|||
|
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|||
|
```
|
|||
|
|
|||
|
### GIT LFS
|
|||
|
```bash
|
|||
|
sudo apt install git-lfs
|
|||
|
git lfs install
|
|||
|
|
|||
|
git lfs pull
|
|||
|
|
|||
|
git lfs track "*.ogg" 或 git lfs track "files/dl/*"
|
|||
|
|
|||
|
git submodule add http://ct.windycloud.cn:3000/OpenWrt/coolsnowwolf-lede
|
|||
|
|
|||
|
git clone --recurse-submodules https://ct.windycloud.cn:3000/WindyMadman/WindyOpenWRT
|
|||
|
|
|||
|
git config --global credential.helper store
|
|||
|
```
|
|||
|
|