為什麼安裝新核心後.config 檔案沒有複製到/boot?

為什麼安裝新核心後.config 檔案沒有複製到/boot?

我遇到了一個很奇怪的問題:

根據:

核心和模組必須移動到特殊位置才能使用,

1. make modules_install
2. make install

第一個將創建 /lib/modules/ 目錄並將模組放置在那裡。第二個目標將,

1. Move the kernel, bzImage, to /boot and rename it vmlinuz-<revision>,
2. Move the System.map to /boot,
3. Create initrd.img-<revision>
4. Copy .config to /boot, renaming it to config-<revision>
5. Modifies the boot loader configuration file /boot/grub/menu.lst
   so that the new kernel is listed on the boot menu.

我配置並編譯了最新的Linux核心3.15,並執行make install安裝新核心。除了 .config 檔案沒有複製到 之外,一切似乎都正常/boot

為什麼來源樹根目錄下的 .config 檔案沒有複製到 /boot ?

附言。我運行的作業系統是 fedora 20。

答案1

該文檔似乎不正確或早已過時。看著來源,我只看到bzImage並被System.map複製。至少早在那時就是這種情況2.6.12。複製initrd.config檔案必須透過發行版的腳本來完成。

由於某種原因,這取決於架構:手臂x86不要複製.config,但是米普斯做。

相關內容