Linux - KernelThis forum is for all discussion relating to the Linux kernel.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Rather than tell you in Redneck, my native tongue, can I point you to Linus Torvald's instructions in the top level directory of your kernel source? The filename is README.
sorry, i think i need to restructure my question. what i meant was, does the -mm patch work with just the normal release? if not, does it require any special parameter to patch an -mm with a normal one?
Yes, as far as I know, the -mm patchset is for the vanilla (www.kernel.org) kernel. To apply a patch to your kernel that you downloaded form www.kernel.org, first make sure that the patch you downloaded is for the kernel version you downloaded. Then extract the kernel source and put the patch in the root kernel source directory (such as /usr/src/linux-2.6.17.1/). Now decompress the patch and enter this command, as root, from that directory:
Code:
patch -p1 < [TheNameOfThePatchFile]
Note the "<". Forgetting to put that in will probably mess up your patch file.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.