summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo M. Duarte <rodrigo.duarte@ossystems.com.br>2025-04-04 14:21:02 -0300
committerRodrigo M. Duarte <rodrigo.duarte@ossystems.com.br>2025-05-14 18:12:22 -0300
commit111ae541142452a622a8c085def282bba799e512 (patch)
tree84efc6100e0e9998290254132cdd54785851cd28
parent3b606d7dd5ebd0fe0ce67a6029680ab6e2e8246a (diff)
downloadmeta-freescale-111ae541142452a622a8c085def282bba799e512.tar.gz
linux-imx-headers: Update from 6.6 to 6.12
Signed-off-by: Rodrigo M. Duarte <rodrigo.duarte@ossystems.com.br>
-rw-r--r--recipes-kernel/linux/linux-imx-headers_6.12.bb (renamed from recipes-kernel/linux/linux-imx-headers_6.6.bb)17
1 files changed, 13 insertions, 4 deletions
diff --git a/recipes-kernel/linux/linux-imx-headers_6.6.bb b/recipes-kernel/linux/linux-imx-headers_6.12.bb
index 41c337c4b..c8a2a3450 100644
--- a/recipes-kernel/linux/linux-imx-headers_6.6.bb
+++ b/recipes-kernel/linux/linux-imx-headers_6.12.bb
@@ -11,9 +11,9 @@ SRC_URI = " \
11 git://github.com/nxp-imx/linux-imx.git;protocol=https;branch=${SRCBRANCH} \ 11 git://github.com/nxp-imx/linux-imx.git;protocol=https;branch=${SRCBRANCH} \
12 file://0001-video-fbdev-mxc-make-uapi-ipu.h-pxp_dma.h-compatible.patch \ 12 file://0001-video-fbdev-mxc-make-uapi-ipu.h-pxp_dma.h-compatible.patch \
13" 13"
14SRCBRANCH = "lf-6.6.y" 14SRCBRANCH = "lf-6.12.y"
15LOCALVERSION = "-6.6.52-2.2.0" 15LOCALVERSION = "-lts-${SRCBRANCH}"
16SRCREV = "e0f9e2afd4cff3f02d71891244b4aa5899dfc786" 16SRCREV = "37d02f4dcbbe6677dc9f5fc17f386c05d6a7bd7a"
17 17
18S = "${WORKDIR}/git" 18S = "${WORKDIR}/git"
19 19
@@ -27,7 +27,6 @@ IMX_UAPI_HEADERS = " \
27 hx280enc.h \ 27 hx280enc.h \
28 ipu.h \ 28 ipu.h \
29 imx_vpu.h \ 29 imx_vpu.h \
30 mxc_asrc.h \
31 mxc_dcic.h \ 30 mxc_dcic.h \
32 mxc_mlb.h \ 31 mxc_mlb.h \
33 mxc_sim_interface.h \ 32 mxc_sim_interface.h \
@@ -39,6 +38,11 @@ IMX_UAPI_HEADERS = " \
39 videodev2.h \ 38 videodev2.h \
40" 39"
41 40
41IMX_UAPI_HEADERS_SOUND = " \
42 sound/compress_offload.h \
43 sound/compress_params.h \
44"
45
42do_install() { 46do_install() {
43 # We install all headers inside of B so we can copy only the 47 # We install all headers inside of B so we can copy only the
44 # i.MX-specific ones, and there is no risk of a new header to be 48 # i.MX-specific ones, and there is no risk of a new header to be
@@ -60,6 +64,11 @@ do_install() {
60 install -D -m 0644 ${B}${includedir}/linux/$h \ 64 install -D -m 0644 ${B}${includedir}/linux/$h \
61 ${D}${includedir}/imx/linux/$h 65 ${D}${includedir}/imx/linux/$h
62 done 66 done
67 install -d ${D}${includedir}/imx/linux/sound
68 for h in ${IMX_UAPI_HEADERS_SOUND}; do
69 install -D -m 0644 ${B}${includedir}/$h \
70 ${D}${includedir}/imx/$h
71 done
63} 72}
64 73
65# Allow to build empty main package, this is required in order for -dev package 74# Allow to build empty main package, this is required in order for -dev package