Re: [GIT PULL] x86/entry for 7.0-rc1
From: Linus Torvalds
Date: Wed Feb 11 2026 - 12:52:38 EST
On Wed, 11 Feb 2026 at 09:40, H. Peter Anvin <hpa@xxxxxxxxx> wrote:
>
> Oh, I do too. And so I do make in the build directory, or tack on the O=
> option. FAR more annoying to me is that kbuild requires you to do the make
> command in the root directory of the tree.
It would indeed be lovely if "make" in subdirectories would find their
way back home.
> "make -C ../../../../.. arch/x86/entry/vdso/vdso32/sigreturn.o" is not really
> much better than
Yeah, I live in the top directory most of the time, so I go the other
way and just do
make arch/x86/entry/vdso/vdso32/sigreturn.o
or whatever path I'm interested in (sometimes just a whole subdirectory).
And then I depend on good autocomplete of filenames, so I never
actually type out that full path.
Linus