recipes-kernel: Build kernel tools for architecture and not machine

As explained in the comments, in yocto the kernel is expected to be
built for each MACHINE and not for each architecture as we do.

Therefor all tools related to kernel must also be adapted.

BugzID: 80015
This commit is contained in:
Alexandre Bard 2022-06-08 17:16:32 +02:00
parent 43dd045696
commit dae3c027be
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# This tool is just a wrapper for the kernel build in yocto
# Since we build the kernel for each architecture and not for each machine,
# We also need to build this recipe for each architecture and not for all machine
PACKAGE_ARCH = "${TUNE_PKGARCH}"

View File

@ -0,0 +1,5 @@
# These tool are just some tools to build kernel modules
# Since we build the kernel for each architecture and not for each machine,
# We also need to build this recipe for each architecture and not for all machine
PACKAGE_ARCH = "${TUNE_PKGARCH}"