一.Linux内核配置编译 1. 交叉编译设置:make ARCH=arm CROSS_COMPILE=arm-linux- 注:也可以直接修改顶层Makefile ARCH ?= arm CROSS_COMPILE ?= arm-linux- 2. 加载默认设置:make mini2440_defconfig ① make mini2440_config: 将arch/arm/configs目录下的mini2440_defconfig文件复制为.config ② make menuconfig…
为什么要配置内核 基于硬件和软件的需求选出需要的功能,去掉不要的功能. 内核配置的方法 make config:基于文本交互的配置. make menuconfig:基于图形菜单的配置. make menuconfig配置方法 1.菜单项的分类 processor type and features 处理器类型 networking support 网络协议支持 device drivers 设备驱动支持 file systems …