| Message ID | 20260616191647.2014612-1-alex@linutronix.de (mailing list archive) |
|---|---|
| State | New |
| Headers | show |
| Series | beaglebone-yocto: enable thumb | expand |
diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf index 676e057..b3c15d5 100644 --- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf +++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf @@ -8,7 +8,6 @@ MACHINE_EXTRA_RRECOMMENDS = "kernel-modules" EXTRA_IMAGEDEPENDS += "virtual/bootloader" -DEFAULTTUNE ?= "cortexa8hf-neon" include conf/machine/include/arm/armv7a/tune-cortexa8.inc IMAGE_FSTYPES += "tar.zst wic.zst wic.bmap"
To the best of my online research all armv7a hardware supports thumb instructions, and so this machine definition shouldn't set a tune that doesn't have it. Removing the line falls back to the default from the .inc file whih is cortexa8thf-neon. The immediate reason to do it is that latest version of gstreamer has thumb assembly, and thus fails to build if thumb is not enabled: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/work_items/5164 Signed-off-by: Alexander Kanavin <alex@linutronix.de> --- meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 1 - 1 file changed, 1 deletion(-)