NotePublic/Software/Development/OperatingSystem/Linux/Kernel/Linux_Kernel_开发常用命令.md

10 lines
204 B
Markdown
Raw Normal View History

# Linux Kernel 开发常用命令
```bash
make menuconfig
make LOCALVERSION="" -j<n>
make -C <kernel source dir> M=<modules dir> modules
make modules_install INSTALL_MOD_PATH=<target dir>
make clean
```