summaryrefslogtreecommitdiffstats
path: root/recipes-extended/jailhouse/jailhouse-imx_git.bb
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2025-08-25 09:57:33 -0500
committerOtavio Salvador <otavio@ossystems.com.br>2025-08-26 11:51:33 -0300
commitc2672fc026f0f71e621bb1d0c29490715ace5c8b (patch)
treec15c9f4c7583715fee932e03e5032f904f302a9e /recipes-extended/jailhouse/jailhouse-imx_git.bb
parentacadad34b69e693449a59d4213f1e63ece59c135 (diff)
downloadmeta-freescale-c2672fc026f0f71e621bb1d0c29490715ace5c8b.tar.gz
jailhouse-imx: Fix GCC 15 errors and skip QA errors
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-extended/jailhouse/jailhouse-imx_git.bb')
-rw-r--r--recipes-extended/jailhouse/jailhouse-imx_git.bb10
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes-extended/jailhouse/jailhouse-imx_git.bb b/recipes-extended/jailhouse/jailhouse-imx_git.bb
index ac7d2cfe6..0d1616c26 100644
--- a/recipes-extended/jailhouse/jailhouse-imx_git.bb
+++ b/recipes-extended/jailhouse/jailhouse-imx_git.bb
@@ -24,6 +24,8 @@ PV = "2023.03+git${SRCPV}"
24IMX_JAILHOUSE_SRC ?= "git://github.com/nxp-imx/imx-jailhouse.git;protocol=https" 24IMX_JAILHOUSE_SRC ?= "git://github.com/nxp-imx/imx-jailhouse.git;protocol=https"
25SRC_URI = "${IMX_JAILHOUSE_SRC};branch=${SRCBRANCH} \ 25SRC_URI = "${IMX_JAILHOUSE_SRC};branch=${SRCBRANCH} \
26 file://arm-arm64-Makefile-Remove-march-option-from-Makefile.patch \ 26 file://arm-arm64-Makefile-Remove-march-option-from-Makefile.patch \
27 file://0001-YOCIMX-9281-1-Fix-gcc15-errors.patch \
28 file://0002-YOCIMX-9281-2-hypervisor-arm64-fix-strh-usage.patch \
27 " 29 "
28 30
29DEPENDS = " \ 31DEPENDS = " \
@@ -109,6 +111,12 @@ RDEPENDS:pyjailhouse = " \
109 python3-shell \ 111 python3-shell \
110" 112"
111 113
112INSANE_SKIP:${PN} = "ldflags" 114INSANE_SKIP:${PN} = "ldflags buildpaths"
115INSANE_SKIP:${PN}-dbg = "buildpaths"
116
117# The QA error in package kernel-module-${KERNEL_VERSION} cannot be skipped with
118# INSANE_SKIP, so adjust at the ERROR_QA level
119ERROR_QA:remove = "buildpaths"
120INSANE_SKIP:kernel-module-${KERNEL_VERSION} = "buildpaths"
113 121
114COMPATIBLE_MACHINE = "(mx8m-nxp-bsp|mx8ulp-nxp-bsp|mx9-nxp-bsp)" 122COMPATIBLE_MACHINE = "(mx8m-nxp-bsp|mx8ulp-nxp-bsp|mx9-nxp-bsp)"