Polished up my weekend project a bit, made a webpage that tracks the amount of patches on top of the kernel.org linux for a few Linux phone repositories.
@martijnbraam you thinking about adding the librem 5 kernel to that list?
@joao Have not figured out how to get that data nicely, if I use the same diffing method I get a lot of commits from kernel.org mixed in
@martijnbraam @joao That's probably because of stable release merges. Rebasing should be enough to deal with it.
@martijnbraam @joao Actually, no rebasing necessary - `v5.13.19..pureos/byzantium` and `v5.15.5..next/byzantium` work just fine!
@martijnbraam @joao did you try the next/byzantium branch? We could also create a tag/branch that makes it simpler to derive the kernel version from it (/cc @merge
@martijnbraam @joao @merge if I read the code correctly that's because you look for a search base with master but the stable point releases are never merged back there. I think it's simplest if @merge publishes a tag top of linux 5.15 ?
He already looked at 5.16 so we could just use that as a base?
@martijnbraam @joao @merge that works too, if I use stable/linux-5.15.y instead of origin//master as the base the result looks reasonable
@martijnbraam also, really cool project BTW