以下是为 Android 编译内核的步骤:
$ export ARCH=arm
$ export SUBARCH=arm
$ export CROSS_COMPILE=arm-eabi-
$ cd omap
$ git checkout <commit_from_first_step>
$ make tuna_defconfig
$ make
我想通过编辑 .config 文件(为多媒体和 V4L2 启用某些标志)来更改内核的默认配置。但是,当我尝试执行“make”时,.config 文件被默认值覆盖,内核使用这些值编译。我尝试编辑 .config 文件并执行“make oldconfig”,但结果相同。
有什么方法可以编辑 .config 文件吗?