| 1 |
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/kernel-upgrade.xml,v 1.9 2005/10/06 19:13:03 jkt Exp $ -->
|
| 3 |
|
| 4 |
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
|
| 5 |
<guide link="/doc/en/kernel-upgrade.xml">
|
| 6 |
<title>Gentoo Linux Kernel Upgrade Guide</title>
|
| 7 |
<author title="Author">
|
| 8 |
<mail link="dsd@gentoo.org">Daniel Drake</mail>
|
| 9 |
</author>
|
| 10 |
|
| 11 |
<abstract>
|
| 12 |
This document describes the process of upgrading your kernel from one release
|
| 13 |
to another.
|
| 14 |
</abstract>
|
| 15 |
|
| 16 |
<!-- The content of this document is licensed under the CC-BY-SA license -->
|
| 17 |
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
|
| 18 |
<license/>
|
| 19 |
|
| 20 |
<version>0.1.7</version>
|
| 21 |
<date>2005-10-06</date>
|
| 22 |
|
| 23 |
<chapter>
|
| 24 |
<title>Introduction</title>
|
| 25 |
<section>
|
| 26 |
<body>
|
| 27 |
|
| 28 |
<p>
|
| 29 |
The kernel is one of the few package classes in portage that requires some
|
| 30 |
manual intervention to complete the upgrade. Portage will download and
|
| 31 |
install the kernel source for you, but then it is up to you to step in and
|
| 32 |
compile the new kernel before any changes will take effect.
|
| 33 |
</p>
|
| 34 |
|
| 35 |
<p>
|
| 36 |
Although this guide is targeted at users upgrading from one kernel release
|
| 37 |
to another, it will also be useful for users migrating from one kernel
|
| 38 |
package to another.
|
| 39 |
</p>
|
| 40 |
|
| 41 |
<p>
|
| 42 |
<c>gentoo-sources</c> is used as an example in this document, however, the
|
| 43 |
instructions here also apply to the other packages present in our tree.
|
| 44 |
</p>
|
| 45 |
|
| 46 |
</body>
|
| 47 |
</section>
|
| 48 |
</chapter>
|
| 49 |
|
| 50 |
<chapter>
|
| 51 |
<title>Why upgrade the kernel?</title>
|
| 52 |
<section>
|
| 53 |
<body>
|
| 54 |
|
| 55 |
<p>
|
| 56 |
Generally, upgrading from one minor kernel release to the next won't bring any
|
| 57 |
major differences. There are several reasons to upgrade the kernel. One is to
|
| 58 |
take advantage of a specific new feature or driver; another is to be protected
|
| 59 |
against a security vulnerability, or just to maintain an up-to-date and healthy
|
| 60 |
system.
|
| 61 |
</p>
|
| 62 |
|
| 63 |
<p>
|
| 64 |
Even if you choose not to update to every new kernel revision, it is
|
| 65 |
recommended that you at least upgrade from time to time. It is strongly
|
| 66 |
recommended that you immediately upgrade to a new kernel if that new release
|
| 67 |
solves a security problem.
|
| 68 |
</p>
|
| 69 |
|
| 70 |
</body>
|
| 71 |
</section>
|
| 72 |
</chapter>
|
| 73 |
|
| 74 |
<chapter>
|
| 75 |
<title>Obtaining the newer sources through Portage</title>
|
| 76 |
<section>
|
| 77 |
<body>
|
| 78 |
|
| 79 |
<p>
|
| 80 |
You upgrade the kernel sources like you would upgrade any other package -
|
| 81 |
using the <c>emerge</c> utility. It will probably be the case that you want to
|
| 82 |
upgrade your kernel when you see the upgrade appearing on your world updates
|
| 83 |
list. For example:
|
| 84 |
</p>
|
| 85 |
|
| 86 |
<pre caption="New kernel sources appearing on update list">
|
| 87 |
# <i>emerge -Dup world</i>
|
| 88 |
Calculating dependencies ...done!
|
| 89 |
[ebuild NS ] sys-kernel/gentoo-sources-2.6.9-r2 [2.6.8-r5]
|
| 90 |
</pre>
|
| 91 |
|
| 92 |
<note>
|
| 93 |
The "NS" label in the above output means that the new kernel will be installed
|
| 94 |
in a New Slot, i.e. the sources of your old kernel will be kept around, until
|
| 95 |
you manually remove them.
|
| 96 |
</note>
|
| 97 |
|
| 98 |
<p>
|
| 99 |
You can then go ahead and install the update, e.g.:
|
| 100 |
</p>
|
| 101 |
|
| 102 |
<pre caption="Upgrading your kernel sources">
|
| 103 |
# <i>emerge -u gentoo-sources</i>
|
| 104 |
</pre>
|
| 105 |
|
| 106 |
<p>
|
| 107 |
The kernel sources will then be installed into a subdirectory of
|
| 108 |
<path>/usr/src</path>. In the above example, the new kernel sources will be
|
| 109 |
installed at <path>/usr/src/linux-2.6.9-gentoo-r2</path>.
|
| 110 |
</p>
|
| 111 |
|
| 112 |
</body>
|
| 113 |
</section>
|
| 114 |
</chapter>
|
| 115 |
|
| 116 |
<chapter>
|
| 117 |
<title>Updating the /usr/src/linux symbolic link</title>
|
| 118 |
<section>
|
| 119 |
<body>
|
| 120 |
|
| 121 |
<p>
|
| 122 |
Gentoo requires that the <path>/usr/src/linux</path> symbolic link points to
|
| 123 |
the sources of the kernel you are running.
|
| 124 |
</p>
|
| 125 |
|
| 126 |
<p>
|
| 127 |
Portage can update the symlink automatically when you emerge new kernel
|
| 128 |
sources. All you have to do is add the <c>symlink</c> flag to the USE variable
|
| 129 |
in <path>/etc/make.conf</path>.
|
| 130 |
</p>
|
| 131 |
|
| 132 |
<pre caption="Example of USE variable in /etc/make.conf">
|
| 133 |
<comment>(Add the symlink keyword)</comment>
|
| 134 |
USE="<i>symlink</i> x86 3dnow 3dnowex X aac aalib adns alsa apache2"
|
| 135 |
</pre>
|
| 136 |
|
| 137 |
<p>
|
| 138 |
If you really want to do it yourself, the following example shows you how to
|
| 139 |
make the link point to <path>linux-2.6.9-gentoo-r2</path>:
|
| 140 |
</p>
|
| 141 |
|
| 142 |
<pre caption="Updating the /usr/src/linux softlink manually">
|
| 143 |
# <i>cd /usr/src</i>
|
| 144 |
# <i>ln -sfn linux-2.6.9-gentoo-r2 linux</i>
|
| 145 |
</pre>
|
| 146 |
|
| 147 |
</body>
|
| 148 |
</section>
|
| 149 |
</chapter>
|
| 150 |
|
| 151 |
<chapter id="install">
|
| 152 |
<title>Configuring, compiling and installing the new kernel</title>
|
| 153 |
<section>
|
| 154 |
<body>
|
| 155 |
|
| 156 |
<p>
|
| 157 |
For either of these options, you should refer to the instructions given in the
|
| 158 |
<uri link="/doc/en/handbook/index.xml">Gentoo
|
| 159 |
Handbook</uri> relating to <e>Configuring the Kernel</e> and <e>Configuring
|
| 160 |
the Bootloader</e>. Below is an outline of the required actions:
|
| 161 |
</p>
|
| 162 |
|
| 163 |
</body>
|
| 164 |
</section>
|
| 165 |
<section>
|
| 166 |
<title>Option 1: Automatic kernel setup with Genkernel</title>
|
| 167 |
<body>
|
| 168 |
|
| 169 |
<p>
|
| 170 |
If you are a genkernel user, you just need to repeat the stages you went
|
| 171 |
through when installing your kernel for the first time.
|
| 172 |
</p>
|
| 173 |
|
| 174 |
<p>
|
| 175 |
Simply run genkernel in the normal way:
|
| 176 |
</p>
|
| 177 |
|
| 178 |
<pre caption="Invoking genkernel">
|
| 179 |
<comment>(For 2.4 kernels:)</comment>
|
| 180 |
# <i>genkernel all</i>
|
| 181 |
|
| 182 |
<comment>(For 2.6 kernels:)</comment>
|
| 183 |
# <i>genkernel --udev all</i>
|
| 184 |
</pre>
|
| 185 |
|
| 186 |
<p>
|
| 187 |
You can also use extra parameters for other genkernel functionality. For
|
| 188 |
example, if you wish to configure some extra kernel options using
|
| 189 |
<c>menuconfig</c> and you wish genkernel to automatically update your grub
|
| 190 |
boot loader configuration, then invoke genkernel as follows:
|
| 191 |
</p>
|
| 192 |
|
| 193 |
<pre caption="Invoking genkernel with some common arguments">
|
| 194 |
# <i>genkernel --menuconfig --bootloader=grub all</i>
|
| 195 |
</pre>
|
| 196 |
|
| 197 |
<p>
|
| 198 |
For more info, follow the
|
| 199 |
<uri link="/doc/en/genkernel.xml">Gentoo Linux Genkernel
|
| 200 |
Guide</uri>, or refer to the <uri link="/doc/en/handbook/index.xml">Gentoo
|
| 201 |
Handbook</uri>. Many of the options can be set in the configuration file for
|
| 202 |
<c>genkernel</c>, <path>/etc/genkernel.conf</path>.
|
| 203 |
</p>
|
| 204 |
|
| 205 |
</body>
|
| 206 |
</section>
|
| 207 |
<section>
|
| 208 |
<title>Option 2: Manual configuration</title>
|
| 209 |
<body>
|
| 210 |
|
| 211 |
<p>
|
| 212 |
To begin, open the <c>menuconfig</c> utility in the kernel source tree:
|
| 213 |
</p>
|
| 214 |
|
| 215 |
<pre caption="Invoking menuconfig">
|
| 216 |
# <i>cd /usr/src/linux</i>
|
| 217 |
# <i>make menuconfig</i>
|
| 218 |
</pre>
|
| 219 |
|
| 220 |
<p>
|
| 221 |
Select the options required for your hardware and operating environment. For
|
| 222 |
additional information on kernel configuration, refer to the chapter entitled
|
| 223 |
<e>Configuring the Kernel</e> of the <uri
|
| 224 |
link="/doc/en/handbook/index.xml">Gentoo Handbook</uri>.
|
| 225 |
</p>
|
| 226 |
|
| 227 |
<p>
|
| 228 |
Next, compile your kernel and copy it over to your boot partition. Again,
|
| 229 |
follow the <uri link="/doc/en/handbook/index.xml">Gentoo Handbook</uri>
|
| 230 |
instructions outlined in the chapter on <e>Configuring the Bootloader</e>. If
|
| 231 |
<path>/boot</path> is a separate partition, ensure it is mounted before copying
|
| 232 |
the compiled kernel to this directory! Failing to do so would keep you from
|
| 233 |
booting the system with your new kernel.
|
| 234 |
</p>
|
| 235 |
|
| 236 |
<pre caption="Compiling and installing the new kernel">
|
| 237 |
# <i>make && make modules_install</i>
|
| 238 |
# <i>mount /boot</i>
|
| 239 |
# <i>cp arch/i386/boot/bzImage /boot/bzImage-2.6.9-gentoo-r2</i>
|
| 240 |
</pre>
|
| 241 |
|
| 242 |
<p>
|
| 243 |
Finally, you should update your boot loader configuration, adding an entry for
|
| 244 |
the new kernel (don't delete the old one just yet!) and unmount the
|
| 245 |
<path>/boot</path> partition. Again, refer to the
|
| 246 |
<uri link="/doc/en/handbook/index.xml">Gentoo Handbook</uri>
|
| 247 |
for detailed instructions on this procedure.
|
| 248 |
</p>
|
| 249 |
|
| 250 |
</body>
|
| 251 |
</section>
|
| 252 |
</chapter>
|
| 253 |
|
| 254 |
<chapter>
|
| 255 |
<title>Reinstalling external modules</title>
|
| 256 |
<section>
|
| 257 |
<body>
|
| 258 |
|
| 259 |
<p>
|
| 260 |
If you use any kernel modules that are not included in the kernel source tree
|
| 261 |
but are provided elsewhere in portage (e.g. NVIDIA or ATI graphics drivers),
|
| 262 |
then you must reinstall these after upgrading the kernel. This is as simple as
|
| 263 |
re-merging the packages involved. For more information, refer to the chapter on
|
| 264 |
<e>Configuring the Kernel</e> in the <uri
|
| 265 |
link="/doc/en/handbook/index.xml">Gentoo Handbook</uri>.
|
| 266 |
To ensure these packages will build against the source tree at
|
| 267 |
<path>/usr/src/linux</path>, first uninstall the packages, then re-emerge them.
|
| 268 |
If old sources for these packages are kept by portage, this uninstall/re-emerge
|
| 269 |
procedure will make sure that they are rebuilt to work with the new kernel.
|
| 270 |
</p>
|
| 271 |
|
| 272 |
</body>
|
| 273 |
</section>
|
| 274 |
</chapter>
|
| 275 |
|
| 276 |
<chapter>
|
| 277 |
<title>Rebooting into the new kernel</title>
|
| 278 |
<section>
|
| 279 |
<body>
|
| 280 |
|
| 281 |
<p>
|
| 282 |
Next, close all applications and reboot your system. If you followed the above
|
| 283 |
instructions correctly, the boot loader menu should include an entry for the
|
| 284 |
new kernel. Select the new kernel and let the system boot.
|
| 285 |
</p>
|
| 286 |
|
| 287 |
<p>
|
| 288 |
Hopefully, your system successfully boots with the new kernel, and you can log
|
| 289 |
in to resume whatever you were doing. If this is the case, then the upgrade is
|
| 290 |
complete.
|
| 291 |
</p>
|
| 292 |
|
| 293 |
<p>
|
| 294 |
If you made a mistake and the system fails to boot with the new kernel, reboot
|
| 295 |
the system and select the entry from the boot loader that corresponds to the
|
| 296 |
last known working kernel. You can then restart from the <uri link="#install">
|
| 297 |
Configuring, compiling, and installing the new kernel</uri> stage -- making
|
| 298 |
the appropriate changes to correct your mistake. In some cases, you might not
|
| 299 |
even need to reboot to do this (e.g. you missed a driver for an audio device,
|
| 300 |
Ethernet adapter, etc.)
|
| 301 |
</p>
|
| 302 |
|
| 303 |
</body>
|
| 304 |
</section>
|
| 305 |
</chapter>
|
| 306 |
|
| 307 |
<chapter>
|
| 308 |
<title>Running multiple kernels</title>
|
| 309 |
<section>
|
| 310 |
<body>
|
| 311 |
|
| 312 |
<p>
|
| 313 |
You may have noticed, that when installing the sources for your newer kernel,
|
| 314 |
the sources for your existing kernel were not removed. This is by design -- it
|
| 315 |
allows you to easily switch between running different kernels.
|
| 316 |
</p>
|
| 317 |
|
| 318 |
<p>
|
| 319 |
Switching between multiple kernels is as simple as leaving the kernel sources
|
| 320 |
under <path>/usr/src/</path> and leaving the <path>bzImage</path> binaries on
|
| 321 |
your <path>/boot</path> partition (referenced by entries in your boot loader
|
| 322 |
configuration). Every time you boot up, you will be presented with a choice of
|
| 323 |
which kernel to boot into.
|
| 324 |
</p>
|
| 325 |
|
| 326 |
</body>
|
| 327 |
</section>
|
| 328 |
</chapter>
|
| 329 |
|
| 330 |
<chapter>
|
| 331 |
<title>Removing older kernels</title>
|
| 332 |
<section>
|
| 333 |
<body>
|
| 334 |
|
| 335 |
<p>
|
| 336 |
Continuing on from the last section, you may be happy with your new kernel and
|
| 337 |
not have any need to keep older kernel versions around. To easily remove all
|
| 338 |
sources for a particular kernel except for the newest one, you can take
|
| 339 |
advantage of the <e>prune</e> option available through <c>emerge</c>. Continuing
|
| 340 |
the example using <c>gentoo-sources</c>:
|
| 341 |
</p>
|
| 342 |
|
| 343 |
<pre caption="Pruning old versions">
|
| 344 |
# <i>emerge -P gentoo-sources</i>
|
| 345 |
</pre>
|
| 346 |
|
| 347 |
<p>
|
| 348 |
In most cases, temporary files used during compilation will still remain under
|
| 349 |
the appropriate source directory under <path>/usr/src</path>. It is safe to
|
| 350 |
remove these using <c>rm</c>.
|
| 351 |
</p>
|
| 352 |
|
| 353 |
<p>
|
| 354 |
You can also safely delete any modules that were used by this kernel. This can
|
| 355 |
be done by removing the appropriate directories under <path>/lib/modules/</path>
|
| 356 |
that relate to the kernel versions you are removing. Be careful not to delete
|
| 357 |
modules belonging to kernels that you still use!
|
| 358 |
</p>
|
| 359 |
|
| 360 |
<p>
|
| 361 |
Finally, you can mount your <path>/boot</path> partition and remove the
|
| 362 |
<path>bzImage</path> file(s) for the kernel(s) you are pruning. You should also
|
| 363 |
edit your boot loader configuration so that it no longer references such
|
| 364 |
kernel(s).
|
| 365 |
</p>
|
| 366 |
|
| 367 |
</body>
|
| 368 |
</section>
|
| 369 |
</chapter>
|
| 370 |
|
| 371 |
<chapter>
|
| 372 |
<title>Advanced: Using your old kernel .config to configure a new one</title>
|
| 373 |
<section>
|
| 374 |
<body>
|
| 375 |
|
| 376 |
<p>
|
| 377 |
It is sometimes possible to save time by re-using the configuration file from
|
| 378 |
your old kernel when configuring the new one. Note that this is generally
|
| 379 |
unsafe -- too many changes between every kernel release for this to be a
|
| 380 |
reliable upgrade path.
|
| 381 |
</p>
|
| 382 |
|
| 383 |
<p>
|
| 384 |
The only situation where this is appropriate is when upgrading from one Gentoo
|
| 385 |
kernel revision to another. For example, the changes made between
|
| 386 |
<c>gentoo-sources-2.6.9-r1</c> and <c>gentoo-sources-2.6.9-r2</c> will be very
|
| 387 |
small, so it is usually OK to use the following method. However, it is not
|
| 388 |
appropriate to use it in the example used throughout this document: upgrading
|
| 389 |
from 2.6.8 to 2.6.9. Too many changes between the official releases, and the
|
| 390 |
method described below does not display enough context to the user, often
|
| 391 |
resulting in the user running into problems because they disabled options that
|
| 392 |
they really didn't want to.
|
| 393 |
</p>
|
| 394 |
|
| 395 |
<p>
|
| 396 |
To reuse your old <path>.config</path>, you simply need to copy it over and then
|
| 397 |
run <c>make oldconfig</c>. In the following example, we take the configuration
|
| 398 |
from <c>gentoo-sources-2.6.9-r1</c> and import it into
|
| 399 |
<c>gentoo-sources-2.6.9-r2</c>.
|
| 400 |
</p>
|
| 401 |
|
| 402 |
<pre caption="Reusing your old config">
|
| 403 |
# <i>cd /usr/src/linux-2.6.9-gentoo-r2</i>
|
| 404 |
# <i>cp ../linux-2.6.9-gentoo-r1/.config .</i>
|
| 405 |
# <i>make oldconfig</i>
|
| 406 |
</pre>
|
| 407 |
|
| 408 |
<p>
|
| 409 |
At this point, you may be asked to produce answers for configuration options
|
| 410 |
which have changed between the two versions. Once you have done that, you can
|
| 411 |
compile and install your kernel as normal, without having to go through the
|
| 412 |
<c>menuconfig</c> configuration process.
|
| 413 |
</p>
|
| 414 |
|
| 415 |
</body>
|
| 416 |
</section>
|
| 417 |
</chapter>
|
| 418 |
|
| 419 |
<chapter>
|
| 420 |
<title>Problems after a kernel upgrade?</title>
|
| 421 |
<section>
|
| 422 |
<body>
|
| 423 |
|
| 424 |
<p>
|
| 425 |
With the rapid development of the Linux kernel, it is inevitable that some
|
| 426 |
changes made from one kernel release to another may cause some problems. If you
|
| 427 |
have any issues with the latest versions of <uri
|
| 428 |
link="/doc/en/gentoo-kernel.xml#doc_chap2"> Gentoo-supported kernels</uri> then
|
| 429 |
please do report the issues to us.
|
| 430 |
</p>
|
| 431 |
|
| 432 |
</body>
|
| 433 |
</section>
|
| 434 |
</chapter>
|
| 435 |
|
| 436 |
</guide>
|