我遇到了一個很奇怪的問題:
根據這:
核心和模組必須移動到特殊位置才能使用,
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。