|
PA-RISC/Linux Boot HOWTO |
|
Prev
|
Chapter 6. Building and installing your own PA-RISC/Linux kernel |
Next
|
6.3. Kernel installation
If you have made a native build on the box you wish to install, you can setup the new kernel as follows : within the kernel source tree
linux/
, as root do a :
bash# cp vmlinux /boot/vmlinux-
[kernelversion]
bash# cp System.map /boot/System.map-
[kernelversion]
bash# cp .config /boot/config-
[kernelversion]
|
Though it is not mandatory, we suggest you to replace
[kernelversion]
by the version of the kernel you built,
e.g.
:
vmlinux-2.4.18-pa44
. This will help you dealing with multiple kernel versions on the same machine. The same applies to
.config
. It is not needed to have a working kernel, though it might be very helpful when configuring a new one. Now, do a
cd /boot
, make sure that
vmlinux
is a symbolic link to another file, as in the following example :
bash# ls -l vmlinux
lrwxrwxrwx 1 root root 35 Jun 23 01:38 vmlinux -> vmlinux-2.4.18-64-SMP
|
Make sure to remember the name of the kernel actually running on your box if ever the new one won't work properly. You are now able to ask
PALO
to boot on it if needed (see
Chapter 4
for more information). Now do the following :
bash# rm -f vmlinux
bash# ln -s vmlinux-
[kernelversion]
vmlinux
bash# sync
|
If you want to boot from network you can forget all this, as you will need to set
PALO
as explained in the
Section 4.3
, and run
make palo
to create the bootable
lifimage
.
If you have made a cross-compiled build or built a kernel on a PA box which is not the one you wish to install, you have to find a way to put
vmlinux
,
System.map
and
.config
in
/boot
as mentionned before. You can use the network (like
ftp
) or a CD to do so, or even direct copy to the hard disk drive.