나는 이상한 문제에 직면했습니다.
에 따르면이것:
커널과 모듈을 사용하려면 특별한 위치로 이동해야 합니다.
1. make modules_install 2. make install
첫 번째는 /lib/modules/ 디렉토리를 생성하고 거기에 모듈을 배치합니다. 두 번째 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 파일이 .config 파일에 복사되지 않는다는 점을 제외하면 모든 것이 괜찮은 것 같습니다 /boot
.
소스 트리의 루트 디렉터리 아래에 있는 .config 파일이 /boot에 복사되지 않는 이유는 무엇입니까?
추신. 제가 사용하는 운영체제는 fedora 20입니다.