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:
parent
43dd045696
commit
dae3c027be
|
|
@ -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}"
|
||||
|
|
@ -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}"
|
||||
Loading…
Reference in New Issue