为什么编译Linux内核之前不能避免config?

为什么编译Linux内核之前不能避免config?

我将myconfig文件复制到 /tmp/build/.config

和,make O=/tmp/build/ vmlinux

而且它一直要求我再次配置。

我尝试make O=/tmp/build menuconfig加载 myconfig.json 文件。

尽管如此,在编译之前,它/tmp/build/.config还是被改变了。

我只想用特定的.config文件编译Linux内核。

答案1

您需要在编译之前复制现有的内核配置文件:

cp /boot/config-$(uname -r) .config

相关内容