私は次のような奇妙な問題に遭遇しました:
によるとこれ:
カーネルとモジュールは、使用するために特別な場所に移動する必要があります。
1. make modules_install 2. make install
最初のmakeターゲットは/lib/modules/ディレクトリを作成し、そこにモジュールを配置します。2番目のmakeターゲットは、
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 にコピーされないのはなぜですか?
PS. 私が使用している OS は fedora 20 です。