Lines Matching refs:apply
9 A frequently asked question on the Linux Kernel Mailing List is how to apply
14 In addition to explaining how to apply and revert patches, a brief
15 description of the different kernel trees (and examples of how to apply
24 To correctly apply a patch you need to know what base it was generated from
30 How do I apply or revert a patch?
32 You apply a patch with the `patch' program. The patch program reads a diff
102 options. It can either refuse to apply the changes and abort or it can try
103 to find a way to make the patch apply with a few minor changes.
111 usually adjust the line numbers and apply the patch.
125 only patches from kernel.org and you apply the patches in the correct order,
148 This often happens if you try to apply a patch that was generated against a
160 If you actually did apply this patch previously and you just re-applied it
166 the patch will in fact apply it.
177 As I already mentioned above, these errors should never happen if you apply
182 wish to apply.
191 apply the result.
248 To apply a patch moving from 2.6.11 to 2.6.12, you'd do the following (note
249 that such patches do *NOT* apply on top of 2.6.x.y kernels but on top of the
257 $ patch -p1 < ../patch-2.6.12 # apply the 2.6.12 patch
265 $ patch -p1 < ../patch-2.6.12 # apply new 2.6.12 patch
289 patch does not apply on top of the 2.6.12.2 kernel source, but rather on top
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.
299 $ patch -p1 < ../patch-2.6.12.3 # apply the new 2.6.12.3 patch
320 The -rc patches are not incremental, they apply to a base 2.6.x kernel, just
327 Here are 3 examples of how to apply these patches:
331 $ patch -p1 < ../patch-2.6.13-rc3 # apply the 2.6.13-rc3 patch
338 $ patch -p1 < ../patch-2.6.13-rc5 # apply the new 2.6.13-rc5 patch
345 $ patch -p1 < ../patch-2.6.13-rc5 # apply new 2.6.13-rc5 patch
360 -git patches are not incremental and apply either to a base 2.6.x kernel or
365 Here are some examples of how to apply these patches:
369 $ patch -p1 < ../patch-2.6.12-git1 # apply the 2.6.12-git1 patch
377 $ patch -p1 < ../patch-2.6.13-rc2 # apply the 2.6.13-rc2 patch
379 $ patch -p1 < ../patch-2.6.13-rc2-git3 # apply the 2.6.13-rc2-git3 patch
425 The -mm kernels apply to either a base 2.6.x kernel (when no -rc kernels
432 $ patch -p1 < ../2.6.12-mm1 # apply the 2.6.12-mm1 patch
440 $ patch -p1 < ../patch-2.6.13-rc3 # apply the 2.6.13-rc3 patch
442 $ patch -p1 < ../2.6.13-rc3-mm3 # apply the 2.6.13-rc3-mm3 patch
448 I hope you are now clear on how to apply the various patches and help testing