How to safely backport specific linux kernel commits to an older kernel using git

Posted by superc0w on Stack Overflow See other posts from Stack Overflow or by superc0w
Published on 2010-04-15T10:34:00Z Indexed on 2010/04/15 10:43 UTC
Read the original article Hit count: 289

Filed under:
|
|

I'm currently on a stable 2.6.32 kernel. But I need certain fixes on 2.6.33 branch to be incorporated into this 2.6.32 kernel so that I can create a custom kernel for testing purposes. I can't apply the said fixes directly to the 2.6.32 source because they seem to have dependencies on other fixes.

Is there any safe way to incorporate only the fixes (and all their dependencies) I need into the 2.6.32 kernel with git to create a custom kernel?

Assuming there is a way to do the above, is there a way to track the fixes that have been applied to the custom kernel (i.e. track which commits have been applied to the 2.6.32 kernel to create the custom kernel source)?

© Stack Overflow or respective owner

Related posts about git

Related posts about linux-kernel