增加 ARCH 参数.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-08-19 21:56:21 +08:00
parent 6782b3fb80
commit c3282eba8f
1 changed files with 3 additions and 1 deletions

View File

@ -4,13 +4,15 @@
### 1.1. 常用命令
配置内核时一定要加 ARCH 参数,否则可能出现错误配置。
```bash
# 通过 arch/arm64/configs/xxx_defconfig 生成 .config
make ARCH=arm64 xxx_defconfig
# 通过 .config 生成 ./defconfig
make ARCH=arm64 savedefconfig
# 进入 menuconfig 对内和进行配置。
make menuconfig
make ARCH=arm64 menuconfig
# 指定 LOCALVERSION详见《内核版本添加字符》 并以 n 个进程进行编译。
make LOCALVERSION="" -j<n>
# 编译独立内核模块并安装到指定目录下。