<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic [Yocto] Adding patch(es) for custom modification to isp-vvcam in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1687192#M209199</link>
    <description>&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;I would like to have a question purely Yocto for the NXP BSP : Currently, I develop the ISP based driver of some custom sensors, and I can integrate them into the Yocto bitbaking system as following :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$ &amp;lt;path-to&amp;gt;/meta-&amp;lt;company&amp;gt;/recipes-kernel
├── kernel-modules
│   ├── kernel-module-isp-vvcam
│   │   ├── 0001-vvcam-isp-Force-disable-WDR3.patch
│   │   └── 0002-vvcam-v4l2-sensor-Add-support-for-TOTO.patch
│   └── kernel-module-isp-vvcam_%.bbappend&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;In order to get the custom sensor driver (0002-vvcam-v4l2-sensor-Add-support-for-TOTO.patch) built, I need to modify it a little bit by updating the path of the relevant resources (replace &lt;STRONG&gt;/vvcam/v4l2/sensor&lt;/STRONG&gt; by &lt;STRONG&gt;/sensor&lt;/STRONG&gt;&lt;LI-EMOJI id="lia_disappointed-face" title=":disappointed_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;&lt;P&gt;Original version:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;diff --git a/vvcam/v4l2/sensor/Makefile b/vvcam/v4l2/sensor/Makefile
index d98ecda..bb8f6fa 100755
--- a/vvcam/v4l2/sensor/Makefile
+++ b/vvcam/v4l2/sensor/Makefile
@@ -1,4 +1,5 @@
+obj-m += toto/
 obj-m += ov2775/
 obj-m += os08a20/
 obj-m += camera-proxy-driver/
diff --git a/vvcam/v4l2/sensor/toto/Makefile b/vvcam/v4l2/sensor/toto/Makefile
new file mode 100644
index 0000000..c9fe9b8
--- /dev/null
+++ b/vvcam/v4l2/sensor/toto/Makefile
@@ -0,0 +1,4 @@
+EXTRA_CFLAGS += -I$(PWD)/../common/ -O2 -Werror
+toto-objs += toto_mipi_v3.o
+obj-m += toto.o
diff --git a/vvcam/v4l2/sensor/toto/toto_mipi_v3.c b/vvcam/v4l2/sensor/toto/toto_mipi_v3.c
new file mode 100644
index 0000000..50bf080
--- /dev/null
+++ b/vvcam/v4l2/sensor/toto/toto_mipi_v3.c&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modified version :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;diff --git a/sensor/Makefile b/sensor/Makefile
index d98ecda..bb8f6fa 100755
--- a/sensor/Makefile
+++ b/sensor/Makefile
@@ -1,4 +1,5 @@
+obj-m += toto/
 obj-m += ov2775/
 obj-m += os08a20/
 obj-m += camera-proxy-driver/
diff --git a/sensor/toto/Makefile b/sensor/toto/Makefile
new file mode 100644
index 0000000..c9fe9b8
--- /dev/null
+++ b/sensor/toto/Makefile
@@ -0,0 +1,4 @@
+EXTRA_CFLAGS += -I$(PWD)/../common/ -O2 -Werror
+toto-objs += toto_mipi_v3.o
+obj-m += toto.o
diff --git a/sensor/toto/toto_mipi_v3.c b/sensor/toto/toto_mipi_v3.c
new file mode 100644
index 0000000..50bf080
--- /dev/null
+++ b/sensor/toto/toto_mipi_v3.c
...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above modification works well. However, when it comes to the resource/file out side of /vvcam/v4l2/, such as in the first patch &lt;EM&gt;0001-vvcam-isp-Force-disable-WDR3.patch&lt;/EM&gt;, I have not known how to modify it:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;diff --git a/vvcam/isp/isp_wdr3.c b/vvcam/isp/isp_wdr3.c
index 487a42e..9fbd3de 100644
--- a/vvcam/isp/isp_wdr3.c
+++ b/vvcam/isp/isp_wdr3.c
@@ -406,7 +406,8 @@ void wdr3_hw_init(struct isp_ic_dev *dev)

        {
        uint32_t isp_wdr3_ctrl = isp_read_reg(dev, REG_ADDR(isp_wdr3_ctrl));
-       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 1);
+       pr_warn("[TOTO] %s: Force WDR3 disabled by default\n", __func__);
+       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 0);
        isp_write_reg(dev, REG_ADDR(isp_wdr3_ctrl), isp_wdr3_ctrl);
        }
 }
@@ -419,8 +420,9 @@ int isp_enable_wdr3(struct isp_ic_dev *dev)
 #else
        struct isp_wdr3_context *wdr3 = &amp;amp;dev-&amp;gt;wdr3;
        int32_t isp_wdr3_ctrl = isp_read_reg(dev, REG_ADDR(isp_wdr3_ctrl));
-       wdr3-&amp;gt;enable = true;
-       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 1);
+       pr_warn("[TOTO] %s: Force WDR3 disabled in all cases\n", __func__);
+       wdr3-&amp;gt;enable = false;
+       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 0);
        isp_write_reg(dev, REG_ADDR(isp_wdr3_ctrl), isp_wdr3_ctrl);

        {&lt;/LI-CODE&gt;&lt;P&gt;If I let it bitbaked as-is, there will be following error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ERROR: kernel-module-isp-vvcam-4.2.2.15.0-r0 do_patch: Command Error: 'quilt --quiltrc /data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/build-xwayland-imx_imx8mp/tmp/work/imx_imx8mp-poky-linux/kernel-module-isp-vvcam/4.2.2.15.0-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0001-vvcam-isp-Force-disable-WDR3.patch
can't find file to patch at input line 5
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff --git a/vvcam/isp/isp_wdr3.c b/vvcam/isp/isp_wdr3.c
|index 487a42e..9fbd3de 100644
|--- a/vvcam/isp/isp_wdr3.c
|+++ b/vvcam/isp/isp_wdr3.c
--------------------------
No file to patch.  Skipping patch.
2 out of 2 hunks ignored
Patch 0001-vvcam-isp-Force-disable-WDR3.patch does not apply (enforce with -f)

stderr: 
ERROR: Logfile of failure stored in: /data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/build-xwayland-imx_imx8mp/tmp/work/imx_imx8mp-poky-linux/kernel-module-isp-vvcam/4.2.2.15.0-r0/temp/log.do_patch.888472
ERROR: Task (/data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/sources/meta-imx/meta-bsp/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.15.0.bb:do_patch) failed with exit code '1'
NOTE: Tasks Summary: Attempted 518 tasks of which 514 didn't need to be rerun and 1 failed.

Summary: 1 task failed:
  /data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/sources/meta-imx/meta-bsp/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.15.0.bb:do_patch&lt;/LI-CODE&gt;&lt;P&gt;Effectively, the file being patched could not be found.&lt;/P&gt;&lt;P&gt;Could you help to suggest a solution, please ?&lt;/P&gt;&lt;P&gt;Thanks in advance and best regards,&lt;BR /&gt;Khang&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jul 2023 06:44:47 GMT</pubDate>
    <dc:creator>khang_letruong</dc:creator>
    <dc:date>2023-07-13T06:44:47Z</dc:date>
    <item>
      <title>[Yocto] Adding patch(es) for custom modification to isp-vvcam</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1687192#M209199</link>
      <description>&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;I would like to have a question purely Yocto for the NXP BSP : Currently, I develop the ISP based driver of some custom sensors, and I can integrate them into the Yocto bitbaking system as following :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$ &amp;lt;path-to&amp;gt;/meta-&amp;lt;company&amp;gt;/recipes-kernel
├── kernel-modules
│   ├── kernel-module-isp-vvcam
│   │   ├── 0001-vvcam-isp-Force-disable-WDR3.patch
│   │   └── 0002-vvcam-v4l2-sensor-Add-support-for-TOTO.patch
│   └── kernel-module-isp-vvcam_%.bbappend&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;In order to get the custom sensor driver (0002-vvcam-v4l2-sensor-Add-support-for-TOTO.patch) built, I need to modify it a little bit by updating the path of the relevant resources (replace &lt;STRONG&gt;/vvcam/v4l2/sensor&lt;/STRONG&gt; by &lt;STRONG&gt;/sensor&lt;/STRONG&gt;&lt;LI-EMOJI id="lia_disappointed-face" title=":disappointed_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;&lt;P&gt;Original version:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;diff --git a/vvcam/v4l2/sensor/Makefile b/vvcam/v4l2/sensor/Makefile
index d98ecda..bb8f6fa 100755
--- a/vvcam/v4l2/sensor/Makefile
+++ b/vvcam/v4l2/sensor/Makefile
@@ -1,4 +1,5 @@
+obj-m += toto/
 obj-m += ov2775/
 obj-m += os08a20/
 obj-m += camera-proxy-driver/
diff --git a/vvcam/v4l2/sensor/toto/Makefile b/vvcam/v4l2/sensor/toto/Makefile
new file mode 100644
index 0000000..c9fe9b8
--- /dev/null
+++ b/vvcam/v4l2/sensor/toto/Makefile
@@ -0,0 +1,4 @@
+EXTRA_CFLAGS += -I$(PWD)/../common/ -O2 -Werror
+toto-objs += toto_mipi_v3.o
+obj-m += toto.o
diff --git a/vvcam/v4l2/sensor/toto/toto_mipi_v3.c b/vvcam/v4l2/sensor/toto/toto_mipi_v3.c
new file mode 100644
index 0000000..50bf080
--- /dev/null
+++ b/vvcam/v4l2/sensor/toto/toto_mipi_v3.c&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modified version :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;diff --git a/sensor/Makefile b/sensor/Makefile
index d98ecda..bb8f6fa 100755
--- a/sensor/Makefile
+++ b/sensor/Makefile
@@ -1,4 +1,5 @@
+obj-m += toto/
 obj-m += ov2775/
 obj-m += os08a20/
 obj-m += camera-proxy-driver/
diff --git a/sensor/toto/Makefile b/sensor/toto/Makefile
new file mode 100644
index 0000000..c9fe9b8
--- /dev/null
+++ b/sensor/toto/Makefile
@@ -0,0 +1,4 @@
+EXTRA_CFLAGS += -I$(PWD)/../common/ -O2 -Werror
+toto-objs += toto_mipi_v3.o
+obj-m += toto.o
diff --git a/sensor/toto/toto_mipi_v3.c b/sensor/toto/toto_mipi_v3.c
new file mode 100644
index 0000000..50bf080
--- /dev/null
+++ b/sensor/toto/toto_mipi_v3.c
...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above modification works well. However, when it comes to the resource/file out side of /vvcam/v4l2/, such as in the first patch &lt;EM&gt;0001-vvcam-isp-Force-disable-WDR3.patch&lt;/EM&gt;, I have not known how to modify it:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;diff --git a/vvcam/isp/isp_wdr3.c b/vvcam/isp/isp_wdr3.c
index 487a42e..9fbd3de 100644
--- a/vvcam/isp/isp_wdr3.c
+++ b/vvcam/isp/isp_wdr3.c
@@ -406,7 +406,8 @@ void wdr3_hw_init(struct isp_ic_dev *dev)

        {
        uint32_t isp_wdr3_ctrl = isp_read_reg(dev, REG_ADDR(isp_wdr3_ctrl));
-       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 1);
+       pr_warn("[TOTO] %s: Force WDR3 disabled by default\n", __func__);
+       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 0);
        isp_write_reg(dev, REG_ADDR(isp_wdr3_ctrl), isp_wdr3_ctrl);
        }
 }
@@ -419,8 +420,9 @@ int isp_enable_wdr3(struct isp_ic_dev *dev)
 #else
        struct isp_wdr3_context *wdr3 = &amp;amp;dev-&amp;gt;wdr3;
        int32_t isp_wdr3_ctrl = isp_read_reg(dev, REG_ADDR(isp_wdr3_ctrl));
-       wdr3-&amp;gt;enable = true;
-       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 1);
+       pr_warn("[TOTO] %s: Force WDR3 disabled in all cases\n", __func__);
+       wdr3-&amp;gt;enable = false;
+       REG_SET_SLICE(isp_wdr3_ctrl, WDR3_ENABLE, 0);
        isp_write_reg(dev, REG_ADDR(isp_wdr3_ctrl), isp_wdr3_ctrl);

        {&lt;/LI-CODE&gt;&lt;P&gt;If I let it bitbaked as-is, there will be following error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ERROR: kernel-module-isp-vvcam-4.2.2.15.0-r0 do_patch: Command Error: 'quilt --quiltrc /data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/build-xwayland-imx_imx8mp/tmp/work/imx_imx8mp-poky-linux/kernel-module-isp-vvcam/4.2.2.15.0-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0001-vvcam-isp-Force-disable-WDR3.patch
can't find file to patch at input line 5
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff --git a/vvcam/isp/isp_wdr3.c b/vvcam/isp/isp_wdr3.c
|index 487a42e..9fbd3de 100644
|--- a/vvcam/isp/isp_wdr3.c
|+++ b/vvcam/isp/isp_wdr3.c
--------------------------
No file to patch.  Skipping patch.
2 out of 2 hunks ignored
Patch 0001-vvcam-isp-Force-disable-WDR3.patch does not apply (enforce with -f)

stderr: 
ERROR: Logfile of failure stored in: /data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/build-xwayland-imx_imx8mp/tmp/work/imx_imx8mp-poky-linux/kernel-module-isp-vvcam/4.2.2.15.0-r0/temp/log.do_patch.888472
ERROR: Task (/data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/sources/meta-imx/meta-bsp/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.15.0.bb:do_patch) failed with exit code '1'
NOTE: Tasks Summary: Attempted 518 tasks of which 514 didn't need to be rerun and 1 failed.

Summary: 1 task failed:
  /data/Khang/imx-yocto-bsp-hardknott-5_10_52-2_1_0/sources/meta-imx/meta-bsp/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.15.0.bb:do_patch&lt;/LI-CODE&gt;&lt;P&gt;Effectively, the file being patched could not be found.&lt;/P&gt;&lt;P&gt;Could you help to suggest a solution, please ?&lt;/P&gt;&lt;P&gt;Thanks in advance and best regards,&lt;BR /&gt;Khang&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 06:44:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1687192#M209199</guid>
      <dc:creator>khang_letruong</dc:creator>
      <dc:date>2023-07-13T06:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: [Yocto] Adding patch(es) for custom modification to isp-vvcam</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1688086#M209272</link>
      <description>&lt;P&gt;I don't know if I understand you correct or not, maybe you can put the patch under source folder, then change the bb file to build agan, the patch is "../sources/meta-imx/meta-bsp/recipes-kernel/kernel-modules/"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 04:21:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1688086#M209272</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2023-07-14T04:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: [Yocto] Adding patch(es) for custom modification to isp-vvcam</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1688102#M209277</link>
      <description>&lt;P&gt;Dear &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/39586"&gt;@joanxie&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;Either your suggestion or my organization of custom bsp in a separate yocto layer (&amp;lt;imx-yocto-bsp&amp;gt;/sources/meta-&amp;lt;company&amp;gt;) is okay. I often put the custom source for&lt;EM&gt; isp-vvcam in &amp;lt;imx-yocto-bsp&amp;gt;/sources/meta-imx/meta-bsp/recipes-kernel/kernel-modules/kernel-module-isp-vvcam/ &lt;/EM&gt;as well. But the problem could come from the following line in &lt;EM&gt;&amp;lt;imx-yocto-bsp&amp;gt;/sources/meta-imx/meta-bsp/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.20.0.bb &lt;/EM&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;S = "${WORKDIR}/git/vvcam/v4l2"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In above line, it seems that the source is within &lt;STRONG&gt;&lt;EM&gt;&amp;lt;isp-vvcam&amp;gt;/vvcam/v4l2/&lt;/EM&gt;&lt;/STRONG&gt;, and one of the patch files (0001-vvcam-isp-Force-disable-WDR3.patch) is applied to resource outside of this folder : &lt;EM&gt;&lt;STRONG&gt;&amp;lt;isp-vvcam&amp;gt;/vvcam/isp/&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Khang&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 05:38:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1688102#M209277</guid>
      <dc:creator>khang_letruong</dc:creator>
      <dc:date>2023-07-14T05:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: [Yocto] Adding patch(es) for custom modification to isp-vvcam</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1691210#M209582</link>
      <description>&lt;P&gt;for porting new camera via ISP, you can refer to this to add patch in the bb file&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/nxp-imx-support/imx8mp-imx219-sensor-enablement/tree/L5.15.71_isp_p20/meta-imx8mp-isp-imx219/recipes-kernel/kernel-modules" target="_blank"&gt;https://github.com/nxp-imx-support/imx8mp-imx219-sensor-enablement/tree/L5.15.71_isp_p20/meta-imx8mp-isp-imx219/recipes-kernel/kernel-modules&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2023 08:41:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1691210#M209582</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2023-07-24T08:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: [Yocto] Adding patch(es) for custom modification to isp-vvcam</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1691295#M209590</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/39586"&gt;@joanxie&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you. But this would not work for modification outside of vvcam/v4l2 folder which is the case of my&amp;nbsp;0001-vvcam-isp-Force-disable-WDR3.patch.&lt;/P&gt;&lt;P&gt;I ended up with clone the source from my own repository and compile it directly instead of patching:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SRCBRANCH = "DEV/lf-5.10.52_2.0.0-toto"
ISP_KERNEL_src="git://git@gitlab.com:/company/isp-vvcam.git;protocol=ssh"

SRC_URI = " \
    ${ISP_KERNEL_SRC};branch=${SRCBRANCH} \
"

SRCREV = "&amp;lt;commit-HASH&amp;gt;"&lt;/LI-CODE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Khang&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2023 10:00:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-Adding-patch-es-for-custom-modification-to-isp-vvcam/m-p/1691295#M209590</guid>
      <dc:creator>khang_letruong</dc:creator>
      <dc:date>2023-07-24T10:00:17Z</dc:date>
    </item>
  </channel>
</rss>

