Where would I find a suitable kernel git repository to clone? An
"official" repository, whatever that means? Ideally, I want one with
just the various kernel releases, not one containing gigabytes of intermediate versions. Where would I even start searching to find
this out?
On Thursday, 23 September 2021 20:23:57 CEST Alan Mackenzie wrote:
Where would I find a suitable kernel git repository to clone? AnHey Alan,
"official" repository, whatever that means? Ideally, I want one with
just the various kernel releases, not one containing gigabytes of
intermediate versions. Where would I even start searching to find
this out?
The official repository I think is https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/.
What I would do is apply your patch on top of that, and then to update
it, rebase the patch onto the new upstream commit you want to update to.
This leads to your patches always being at the tip of the commit history
and not somewhere buried between commits from upstream.
However, this rewrites git history so you'd have to force push the
branch to whatever remote you're tracking it in, so keep that in mind.
You could do this though and additionally have another branch where you
track the patch files themselves that are rebased onto a certain kernel commit (you can export them with "git format-patch upstream/master" if upstream/master is whatever branch the patch is currently rebased on).
That of course you don't have to then force push.
I hope this helps :P
-Marco
This raises the question of which kernel to work with: vanilla source
or Gentoo?
If GitHub is preferred, there is also an official GitHub repository of
the Linux Kernel: https://github.com/torvalds/linux
On Thursday, 23 September 2021 20:23:57 CEST Alan Mackenzie wrote:
Where would I find a suitable kernel git repository to clone? An "official" repository, whatever that means? Ideally, I want one with
just the various kernel releases, not one containing gigabytes of intermediate versions. Where would I even start searching to find
this out?
Hey Alan,
The official repository I think is https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/.
What I would do is apply your patch on top of that, and then to update
it, rebase the patch onto the new upstream commit you want to update to.
This leads to your patches always being at the tip of the commit history
and not somewhere buried between commits from upstream.
However, this rewrites git history so you'd have to force push the
branch to whatever remote you're tracking it in, so keep that in mind.
You could do this though and additionally have another branch where you
track the patch files themselves that are rebased onto a certain kernel commit (you can export them with "git format-patch upstream/master" if upstream/master is whatever branch the patch is currently rebased on).
That of course you don't have to then force push.
I hope this helps :P
-Marco
If GitHub is preferred, there is also an official GitHub repository of
the Linux Kernel: https://github.com/torvalds/linux
-Ramon
On Friday, 24 September 2021 10:49:53 CEST Peter Humphrey wrote:
This raises the question of which kernel to work with: vanilla source
or Gentoo?
Gentoo's patches are kept minimal so it shouldn't really matter (and I
don't think they'd touch this part of the code anyway). Personally I'd
make the patches against the vanilla sources.
-Marco
I may
not be doing a lot of rebasing, since I'm creating patches for already released versions rather than keeping up to date with the head of the
master branch.
I don't envisage any upstream accepting my patch. The powers that be
were adamant that the soft scrolling be removed from the official
kernel, ostensibly due to security reasons. I may get around to
posting the patch on the Gentoo wiki, but for now it'll just be on
the mailing list, plus to any individual Linux user who asks for a
copy.
I hope this helps :P
It did indeed. Thanks!
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 443 |
Nodes: | 16 (3 / 13) |
Uptime: | 61:55:57 |
Calls: | 9,190 |
Calls today: | 6 |
Files: | 13,475 |
Messages: | 6,051,871 |