I need a method to get a set of patches, that when applied in succession, can take Linux 5.x to Linux 5.y.
Here's what I've tried (I would greatly appreciate feedback on why this doesn't work):
- (Clone Linux with git)
git checkout v5.12git format-patch v5.11
The above steps produce about 13,000 patch files. However, when I apply these in succession to Linux 5.11, a number of them fail to apply. Specifically, there are errors about how some of the patch hunks have already been applied.
Additionally, I have seen this question: How do I get a linux kernel patch set from the mailing list? , but wouldn't the patches I'm getting from my current process be the same set of patches that were emailed to the Linux mailing list?