diff options
Diffstat (limited to 'recipes-kernel')
4 files changed, 25 insertions, 60 deletions
diff --git a/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.25.4.bb b/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.25.4.bb deleted file mode 100644 index 2da42a7dc..000000000 --- a/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.25.4.bb +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | # Copyright 2020-2023 NXP | ||
| 2 | |||
| 3 | DESCRIPTION = "Kernel loadable module for ISP" | ||
| 4 | LICENSE = "GPL-2.0-only" | ||
| 5 | |||
| 6 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6" | ||
| 7 | |||
| 8 | SRC_URI = "${ISP_KERNEL_SRC};branch=${SRCBRANCH}" | ||
| 9 | ISP_KERNEL_SRC ?= "git://github.com/nxp-imx/isp-vvcam.git;protocol=https" | ||
| 10 | SRCBRANCH = "lf-6.12.y_2.2.0" | ||
| 11 | SRCREV = "ad057a15dd57e053e3596ae83b45ea96835acd3e" | ||
| 12 | |||
| 13 | S = "${UNPACKDIR}/${BP}/vvcam/v4l2" | ||
| 14 | |||
| 15 | inherit module | ||
| 16 | |||
| 17 | MODULES_MODULE_SYMVERS_LOCATION = "dwe" | ||
| 18 | |||
| 19 | DEBUG_PREFIX_MAP:prepend = " \ | ||
| 20 | -fmacro-prefix-map=${WORKDIR}/sources=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR} \ | ||
| 21 | -fdebug-prefix-map=${WORKDIR}/sources=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR} " | ||
| 22 | |||
| 23 | COMPATIBLE_MACHINE = "(mx8mp-nxp-bsp)" | ||
diff --git a/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.26.1.bb b/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.26.1.bb new file mode 100644 index 000000000..b4f5cdf95 --- /dev/null +++ b/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.26.1.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # Copyright 2020-2026 NXP | ||
| 2 | |||
| 3 | DESCRIPTION = "Kernel loadable module for ISP" | ||
| 4 | LICENSE = "GPL-2.0-only" | ||
| 5 | LIC_FILES_CHKSUM = "file://${S}/../LICENSE;md5=64381a6ea83b48c39fe524c85f65fb44" | ||
| 6 | |||
| 7 | SRC_URI = "${ISP_KERNEL_SRC};branch=${SRCBRANCH}" | ||
| 8 | ISP_KERNEL_SRC ?= "git://github.com/nxp-imx/isp-vvcam.git;protocol=https" | ||
| 9 | SRCBRANCH = "lf-6.18.y_1.0.0" | ||
| 10 | SRCREV = "5484bc99a258562c3893808736dd67af22ac355e" | ||
| 11 | |||
| 12 | S = "${UNPACKDIR}/${BP}/vvcam/v4l2" | ||
| 13 | |||
| 14 | inherit module | ||
| 15 | |||
| 16 | MODULES_MODULE_SYMVERS_LOCATION = "dwe" | ||
| 17 | |||
| 18 | DEBUG_PREFIX_MAP:prepend = " \ | ||
| 19 | -fmacro-prefix-map=${UNPACKDIR}/${BP}/vvcam=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR} \ | ||
| 20 | -fdebug-prefix-map=${UNPACKDIR}/${BP}/vvcam=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR} " | ||
| 21 | |||
| 22 | COMPATIBLE_MACHINE = "(mx8mp-nxp-bsp)" | ||
diff --git a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan/mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch b/recipes-kernel/kernel-modules/kernel-module-nxp-wlan/mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch deleted file mode 100644 index 72e75fd57..000000000 --- a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan/mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | From f6079560bd0010a7f34bd18fec8fab4df65b22ea Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Vitor Soares <vitor.soares@toradex.com> | ||
| 3 | Date: Wed, 30 Apr 2025 15:12:06 +0100 | ||
| 4 | Subject: [PATCH] mlinux: moal_main: lower PRINTM_MMSG() log level to KERN_INFO | ||
| 5 | |||
| 6 | Currently, the PRINTM_MMSG macro uses KERN_ALERT for printing messages. | ||
| 7 | KERN_ALERT is intended for critical conditions requiring immediate | ||
| 8 | attention (e.g., hardware failure), and using it for normal debug output | ||
| 9 | is misleading and can clutter system logs. | ||
| 10 | |||
| 11 | This patch lowers the log level to KERN_INFO, which is more appropriate | ||
| 12 | for informational messages that are not indicative of system-critical | ||
| 13 | failures. | ||
| 14 | |||
| 15 | Upstream-Status: Inappropriate [upstream not accepting patches] | ||
| 16 | Signed-off-by: Vitor Soares <vitor.soares@toradex.com> | ||
| 17 | --- | ||
| 18 | mlinux/moal_main.h | 2 +- | ||
| 19 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 20 | |||
| 21 | diff --git a/mlinux/moal_main.h b/mlinux/moal_main.h | ||
| 22 | index 4328652..27121e0 100644 | ||
| 23 | --- a/mlinux/moal_main.h | ||
| 24 | +++ b/mlinux/moal_main.h | ||
| 25 | @@ -3529,7 +3529,7 @@ extern t_u32 drvdbg; | ||
| 26 | do { \ | ||
| 27 | woal_print(MMSG, msg); \ | ||
| 28 | if (drvdbg & MMSG) \ | ||
| 29 | - printk(KERN_ALERT msg); \ | ||
| 30 | + printk(KERN_INFO msg); \ | ||
| 31 | } while (0) | ||
| 32 | |||
| 33 | static inline void woal_print(t_u32 level, char *fmt, ...) | ||
diff --git a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb b/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb index 48f1ad724..073a62ff9 100644 --- a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb +++ b/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb | |||
| @@ -10,13 +10,12 @@ RCONFLICTS:${PN} = "kernel-module-nxp89xx" | |||
| 10 | KERNEL_MODULE_PROBECONF += "moal" | 10 | KERNEL_MODULE_PROBECONF += "moal" |
| 11 | module_conf_moal = "options moal mod_para=nxp/wifi_mod_para.conf" | 11 | module_conf_moal = "options moal mod_para=nxp/wifi_mod_para.conf" |
| 12 | 12 | ||
| 13 | SRCBRANCH = "lf-6.12.49_2.2.0" | ||
| 14 | MRVL_SRC ?= "git://github.com/nxp-imx/mwifiex.git;protocol=https" | ||
| 15 | SRC_URI = " \ | 13 | SRC_URI = " \ |
| 16 | ${MRVL_SRC};branch=${SRCBRANCH} \ | 14 | ${MRVL_SRC};branch=${SRCBRANCH} \ |
| 17 | file://mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch \ | ||
| 18 | " | 15 | " |
| 19 | SRCREV = "84ca65c9ff935d7f2999af100a82531c22c65234" | 16 | MRVL_SRC ?= "git://github.com/nxp-imx/mwifiex.git;protocol=https" |
| 17 | SRCBRANCH = "lf-6.18.2_1.0.0" | ||
| 18 | SRCREV = "a5fe4e194bf99315e349d81d77d6dfacec70757a" | ||
| 20 | 19 | ||
| 21 | inherit module | 20 | inherit module |
| 22 | 21 | ||
