< Day Day Up > |
Recipe 10.9. Removing a Kernel Patch10.9.1 ProblemYou applied a patch, and now you want to get rid of it. It may be unstable or buggy, or maybe you simply made a mistake and want to start over. 10.9.2 SolutionUse the same command you used to unpack and apply it, adding the -R option: $ bzip2 -dc ../patch-2.6.4.bz2 | patch -s -p1 -R 10.9.3 See Also
|
< Day Day Up > |