[Buildroot] Installing kernel headers after building Linux

Arnout Vandecappelle arnout at mind.be
Sat Apr 27 18:28:37 UTC 2019



On 25/04/2019 14:35, Frank Hunleth wrote:
> Hello,
> 
> I have a setup where I’m using a non-Buildroot external toolchain, and I'm trying to add a package that requires the kernel headers from the same version of Linux that’s running. The kernel headers in the external toolchain don’t match the version of Linux that I’m using as you’d expect.

 I don't see how you could ever depend on *the same* headers as the running
kernel...

 What you might get, though, is that you need some feature (typically an ioctl
definition, or netlink attribute, or something like that) which is only
available in a recent-enough kernel.

 What many packages do for such a case is to carry their own recent copy of the
relevant kernel header.

 Could that be an option for you?


> I’m wondering why the Linux build step doesn’t run `make headers_install` at the end so that the header files could be available. Would doing this for external toolchains cause an issue? Before I head too far down that path, I wanted to check.

 There are two potential problems with that.

 The first one is that you will overwrite the headers that were bundled with the
toolchain, which could lead to conflicting types being used. However, this is in
practice not an issue (I think) because of the ABI stability promise.

 The second problem is how to handle this in the Buildroot packaging. I guess
you'd need to add a conditional dependency, i.e.

ifeq ($(BR2_LINUX_KERNEL)$(BR2_KERNEL_HEADERS_AS_KERNEL),y)
FOO_DEPENDENCIES += linux
endif


> Or is there another way of making the kernel headers available (aside from switching to an internally generated toolchain)?

 I think you can do the horrible hack of setting

BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="zImage headers_install
INSTALL_HDR_PATH=$(@D)/usr"
BR2_LINUX_KERNEL_IMAGE_NAME="zImage"

 It hurts my eyes but it might work :-)

 But you're probably better off just patching linux.mk.


> In case it matters, the package I’m looking at adding is `ply` so that I can run a couple eBPF traces.

 Doesn't that require the headers to be present *on the target* as well?

 Regards,
 Arnout



More information about the buildroot mailing list