增加 Linux Kernel 开发常用命令.

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2020-04-15 17:06:57 +08:00
parent d981300253
commit 3f16566f0a
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# Linux Kernel 开发常用命令
```sh
make menuconfig
make -j<n>
make -C <kernel source dir> M=<modules dir> modules
make modules_install INSTALL_MOD_PATH=<target dir>
make clean
```