mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-17 06:48:07 +00:00
62594323aa
Two oe-core changes [1] and [2], have introduced a change in how the kernel-fit-image class generates the entries as related to KERNEL_DTBVENDORED. [1] Corrected the support for KERNEL_DTBVENDORED when generating the entries. But this broke our TI settings and caused build falures because we suddenly had double ti_ti_ entries for the default. [2] Adds support for KERNEL_DTBVENDORED when figuring out the value for FIT_CONF_DEFAULT_DTB when building the fit-image.itd file. With both of these we can drop our custom setting of FIT_CONF_PREFIX and update the values for FIT_CONF_DEFAULT_DTB to match the same strings that go into KERNEL_DEVICETREE. [1] https://git.openembedded.org/openembedded-core/commit/meta/classes-recipe/kernel-fit-image.bbclass?id=4297b94c3728cd2e320d75b68c508e12ab127719 [2] https://git.openembedded.org/openembedded-core/commit/?id=3bceb2dabeee13c0a80ddd74ea7ae991606d6772 Signed-off-by: Ryan Eatmon <reatmon@ti.com>
12 lines
350 B
BlitzBasic
12 lines
350 B
BlitzBasic
SUMMARY = "Generate and sign the fitImage file for TI Machines"
|
|
|
|
FIT_DESC ?= "Kernel fitImage for ${DISTRO_NAME}/${PKGV}/${MACHINE}"
|
|
|
|
require recipes-kernel/linux/linux-yocto-fitimage.bb
|
|
|
|
inherit ti-secdev
|
|
|
|
inherit ${@ 'ti-devicetree-prefix' if d.getVar('KERNEL_DEVICETREE_PREFIX') else ''}
|
|
|
|
do_compile[depends] += "virtual/kernel:do_shared_workdir"
|