2020-04-15 17:06:57 +08:00
|
|
|
# Linux Kernel 开发常用命令
|
|
|
|
|
2020-05-20 16:18:39 +08:00
|
|
|
```bash
|
2020-04-15 17:06:57 +08:00
|
|
|
make menuconfig
|
2020-05-13 11:32:00 +08:00
|
|
|
make LOCALVERSION="" -j<n>
|
2020-04-15 17:06:57 +08:00
|
|
|
make -C <kernel source dir> M=<modules dir> modules
|
|
|
|
make modules_install INSTALL_MOD_PATH=<target dir>
|
|
|
|
make clean
|
|
|
|
```
|