Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 491 Bytes

BuildKernel.md

File metadata and controls

40 lines (28 loc) · 491 Bytes

Linux 内核编译

作者:康林 [email protected]

下载 linux 内核

https://kernel.org/

安装依赖库

sudo apt-get update
sudo apt-get install make gcc
sudo apt-get install flex bison
sudo apt-get install libncurses5-dev #用于menuconfig

配置内核编译参数

make menuconfig

编译内核

make bzImage

编译和安装 modules

make modules
make modules-install

安装内核

make install