hi, i have some questions: i compiled my new kernel, i create a bzImage and copied to the /boot/ folder. Do i need to generate the System.map and the initrd and other files that are in the same folder and have names including the kernel version? This is my /boot/ folder listing:
total 8409 -rw-r--r-- 1 root root 1208178 Feb 27 18:03 bzImage -rw-r--r-- 1 root root 49612 Oct 29 14:51 config-2.4.22-1.2115.nptl -rw-r--r-- 1 root root 49626 Jan 7 12:18 config-2.4.22-1.2149.nptl -rw-r--r-- 1 root root 49617 Feb 18 15:47 config-2.4.22-1.2174.nptl drwxr-xr-x 2 root root 1024 Feb 24 09:40 grub -rw-r--r-- 1 root root 166609 Feb 2 16:44 initrd-2.4.22-1.2115.nptl.img -rw-r--r-- 1 root root 163548 Feb 3 10:42 initrd-2.4.22-1.2149.nptl.img -rw-rw-r-- 1 root root 166576 Feb 24 09:38 initrd-2.4.22-1.2174.nptl.img -rw-r--r-- 1 root root 543 Feb 2 16:44 kernel.h drwx------ 2 root root 12288 Feb 2 10:41 lost+found lrwxrwxrwx 1 root root 29 Feb 24 09:38 System.map -> System.map-2.4.22-1.2174.nptl -rw-r--r-- 1 root root 582775 Oct 29 14:51 System.map-2.4.22-1.2115.nptl -rw-r--r-- 1 root root 569272 Jan 7 12:18 System.map-2.4.22-1.2149.nptl -rw-r--r-- 1 root root 571343 Feb 18 15:47 System.map-2.4.22-1.2174.nptl lrwxrwxrwx 1 root root 41 Feb 2 16:44 vmlinux-2.4.22-1.2115.nptl -> ../lib/modules/2.4.22-1.2115.nptl /vmlinux lrwxrwxrwx 1 root root 41 Feb 3 10:42 vmlinux-2.4.22-1.2149.nptl -> ../lib/modules/2.4.22-1.2149.nptl /vmlinux lrwxrwxrwx 1 root root 41 Feb 24 09:38 vmlinux-2.4.22-1.2174.nptl -> ../lib/modules/2.4.22-1.2174.nptl /vmlinux lrwxrwxrwx 1 root root 26 Feb 24 09:38 vmlinuz -> vmlinuz-2.4.22-1.2174.nptl -rw-r--r-- 1 root root 1252277 Oct 29 14:51 vmlinuz-2.4.22-1.2115.nptl -rw-r--r-- 1 root root 1252082 Jan 7 12:18 vmlinuz-2.4.22-1.2149.nptl -rw-r--r-- 1 root root 1252662 Feb 18 15:47 vmlinuz-2.4.22-1.2174.nptl -rw-r--r-- 1 root root 1208178 Feb 27 18:10 vmlinuz-2.6.3.ntpl
I read all the REAME file and it says nothing about it. regards thanx
On Feb 27, 2004 at 18:49, Rogelio Bazan Reyes in a soothing rage wrote:
hi, i have some questions: i compiled my new kernel, i create a bzImage and copied to the /boot/ folder. Do i need to generate the System.map and the initrd and other files that are in the same folder and have names including the kernel version?
The System.map file should be in the base directory ie /path/to/linux-{version}. The initrd file can be created using mkinitrd. See the man page for more details. The easiest way to do it is just to do 'make modules_install && make install'.
NOTE: I do not know what kernel you compiled so do not execute the 'make modules_install && make install' without first changing the kernel version in /path/to/linux-{version}/Makefile to something that is not in the /boot directory.
N.Emile...