Lines Matching refs:kernel

10 a patch to the kernel or, more specifically, what base kernel a patch for
15 description of the different kernel trees (and examples of how to apply
35 Patches for the Linux kernel are generated relative to the parent directory
36 holding the kernel source dir.
39 kernel source directories it was generated against (or some other directory
41 Since this is unlikely to match the name of the kernel source dir on your
43 unlabeled patch was generated against) you should change into your kernel
124 If you don't have any third-party patches applied to your kernel source, but
125 only patches from kernel.org and you apply the patches in the correct order,
131 to start with a fresh tree downloaded in full from kernel.org.
149 different kernel version than the one you are trying to patch.
178 a patch from kernel.org to the correct version of an unmodified source tree.
179 So if you get these errors with kernel.org patches then you should probably
181 to start over with a fresh download of a full kernel tree and the patch you
215 The patches are available at http://kernel.org/
220 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/
223 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/testing/
226 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/snapshots/
229 ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/
231 In place of ftp.kernel.org you can use ftp.cc.kernel.org, where cc is a
234 less bandwidth used globally and less load on the main kernel.org servers --
245 kernel is released, a patch is made available that is a delta between the
246 previous 2.6.x kernel and the new one.
250 base 2.6.x kernel -- if you need to move from 2.6.x.y to 2.6.x+1 you need to
256 $ cd ~/linux-2.6.11 # change to kernel source dir
262 $ cd ~/linux-2.6.11.1 # change to kernel source dir
274 in a given 2.6.x kernel.
277 kernel and are not interested in helping test development/experimental
280 If no 2.6.x.y kernel is available, then the highest numbered 2.6.x kernel is
281 the current stable kernel.
286 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/incr/
289 patch does not apply on top of the 2.6.12.2 kernel source, but rather on top
290 of the base 2.6.12 kernel source .
291 So, in order to apply the 2.6.12.3 patch to your existing 2.6.12.2 kernel
293 base 2.6.12 kernel source) and then apply the new 2.6.12.3 patch.
297 $ cd ~/linux-2.6.12.2 # change into the kernel source dir
301 $ mv linux-2.6.12.2 linux-2.6.12.3 # rename the kernel source dir
307 by Linus whenever he deems the current git (the kernel's source management
313 stable kernel, so it is important that it be tested by as many people as
320 The -rc patches are not incremental, they apply to a base 2.6.x kernel, just
321 like the 2.6.x.y patches described above. The kernel version before the -rcN
322 suffix denotes the version of the kernel that this -rc kernel will eventually
325 kernel and the patch should be applied on top of the 2.6.12 kernel source.
343 $ cd ~/linux-2.6.12.3 # change to the kernel source dir
347 $ mv linux-2.6.12.3 linux-2.6.13-rc5 # rename the kernel source dir
352 These are daily snapshots of Linus' kernel tree (managed in a git
360 -git patches are not incremental and apply either to a base 2.6.x kernel or
361 a base 2.6.x-rc kernel -- you can see which from their name.
362 A patch named 2.6.12-git1 applies to the 2.6.12 kernel source and a patch
363 named 2.6.13-rc3-git2 applies to the source of the 2.6.13-rc3 kernel.
368 $ cd ~/linux-2.6.12 # change to the kernel source dir
371 $ mv linux-2.6.12 linux-2.6.12-git1 # rename the kernel source dir
374 $ cd ~/linux-2.6.12-git1 # change to the kernel source dir
376 # we now have a 2.6.12 kernel
378 # the kernel is now 2.6.13-rc2
380 # the kernel is now 2.6.13-rc2-git3
409 sure you have up-to-date backups -- that goes for any experimental kernel but
424 kernels are released in between each -rc kernel (1 to 3 is common).
425 The -mm kernels apply to either a base 2.6.x kernel (when no -rc kernels
426 have been released yet) or to a Linus -rc kernel.
447 This concludes this list of explanations of the various kernel trees.
449 the kernel.