[yocto] [meta-zephyr][PATCH 1/2] zephyr-kernel-src: switch to main branch for hal_stm32 module repo

2021-08-10 Thread Naveen Saini
Signed-off-by: Naveen Saini --- recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc b/recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc index 950966e..abe755d 100644 ---

[yocto] [meta-zephyr][PATCH 2/2] zephyr-kernel-src-dev.inc: add dev recipe

2021-08-10 Thread Naveen Saini
It allow to build against latest main branch. User need to have following config locally to use it. PREFERRED_VERSION_zephyr-kernel = "dev" Signed-off-by: Naveen Saini --- .../zephyr-kernel/zephyr-kernel-src-dev.inc | 17 + 1 file changed, 17 insertions(+) create mode

Re: [PATCH 0/3] [linux-yocto] [kernel v5.10/standard/nxp-sdk-5.10/nxp-soc] Fix three build warningsFix three build warnings

2021-08-10 Thread Bruce Ashfield
merged. Bruce In message: [PATCH 0/3] [linux-yocto] [kernel v5.10/standard/nxp-sdk-5.10/nxp-soc] Fix three build warningsFix three build warnings on 11/08/2021 Xiaolei Wang wrote: > This review mainly Fix three build warnings > > v5.10/standard/nxp-sdk-5.10/nxp-soc > > Xiaolei Wang (3):

Re: [linux-yocto] [PATCH v5.10 0/4] xilinx_emaclite: fix CVE-2021-38205

2021-08-10 Thread Bruce Ashfield
In message: [PATCH v5.10 0/4] xilinx_emaclite: fix CVE-2021-38205 on 10/08/2021 Paul Gortmaker wrote: > The fix for CVE-2021-38205 (don't print IOMEM pointer) was backported by > the linux-stable team but not as far back to v5.10 since there was some > underlying dependencies when one goes back

Re: [linux-yocto][v5.10/standard/preempt-rt/sdkv5.10/axxia] axxia: add support for linux-yocto v5.10

2021-08-10 Thread Bruce Ashfield
In message: [linux-yocto][v5.10/standard/preempt-rt/sdkv5.10/axxia] axxia: add support for linux-yocto v5.10 on 10/08/2021 quanyang.wang wrote: > Hi Bruce, > > Would you please help create a new branch > linux-yocto v5.10/standard/preempt-rt/sdkv5.10/axxia Created and merged. Bruce > and

Re: [linux-yocto][v5.10/standard/sdkv5.10/axxia] axxia: add support for linux-yocto v5.10

2021-08-10 Thread Bruce Ashfield
In message: [linux-yocto][v5.10/standard/sdkv5.10/axxia] axxia: add support for linux-yocto v5.10 on 10/08/2021 quanyang.wang wrote: > Hi Bruce, > > Would you please help create a new branch > linux-yocto v5.10/standard/sdkv5.10/axxia > and merge the patches as below to it? Created and merged.

Re: [linux-yocto][kernel v5.10/standard/nxp-sdk-5.4/nxp-imx8][PATCH] mmc: core: Fix the 'err' undeclared compile failure in mmc_alloc_host()

2021-08-10 Thread Bruce Ashfield
merged. Bruce In message: [linux-yocto][kernel v5.10/standard/nxp-sdk-5.4/nxp-imx8][PATCH] mmc: core: Fix the 'err' undeclared compile failure in mmc_alloc_host() on 09/08/2021 Jun Miao wrote: > There is a compile failture caused by commit > 3b4009b49634 ("mmc: core: Don't allocate IDA for OF

Re: [linux-yocto][yocto-kernel-cache][yocto-5.10][PATCH] ti-j72xx: change RPMSG_KDRV_ETH_SWITCH with y

2021-08-10 Thread Bruce Ashfield
merged. Bruce In message: [linux-yocto][yocto-kernel-cache][yocto-5.10][PATCH] ti-j72xx: change RPMSG_KDRV_ETH_SWITCH with y on 09/08/2021 Xulin Sun wrote: > Change RPMSG_KDRV_ETH_SWITCH with y to install Ethernet Switch > earlier, otherwise this feature may fail to install by default. > >

[linux-yocto] [PATCH 2/3] drm: cdns-hdmi: Fix a build warning this 'else' clause does not guard

2021-08-10 Thread Xiaolei Wang
Use parentheses if the statement exceeds one sentence after the else Signed-off-by: Xiaolei Wang --- drivers/gpu/drm/bridge/cadence/cdns-hdmi-core.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/bridge/cadence/cdns-hdmi-core.c

[linux-yocto] [PATCH 3/3] drm/bridge: nwl-dsi: Fix a build warning'nwl_dsi_bridge_mode_fixup' defined but not used

2021-08-10 Thread Xiaolei Wang
Refer to 44cfc6233447 ("drm/bridge: Add NWL MIPI DSI host controller support") nwl_dsi_bridge_mode_fixup has been set as the callback function of .mode_fixup, so this callback is added Signed-off-by: Xiaolei Wang --- drivers/gpu/drm/bridge/nwl-dsi.c | 1 + 1 file changed, 1 insertion(+) diff

[linux-yocto] [PATCH 1/3] clk: imx: Fix a build warning 'imx_enabled_uart_clocks' defined but not used

2021-08-10 Thread Xiaolei Wang
imx_enabled_uart_clocks is not used, so delete this variable Signed-off-by: Xiaolei Wang --- drivers/clk/imx/clk.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/clk/imx/clk.c b/drivers/clk/imx/clk.c index 24d355764068..e310e7506bed 100644 --- a/drivers/clk/imx/clk.c +++

[PATCH 0/3] [linux-yocto] [kernel v5.10/standard/nxp-sdk-5.10/nxp-soc] Fix three build warningsFix three build warnings

2021-08-10 Thread Xiaolei Wang
This review mainly Fix three build warnings v5.10/standard/nxp-sdk-5.10/nxp-soc Xiaolei Wang (3): clk: imx: Fix a build warning 'imx_enabled_uart_clocks' defined but not used drm: cdns-hdmi: Fix a build warning this 'else' clause does not guard drm/bridge: nwl-dsi: Fix a build

Re: [linux-yocto] [meta-realtime][PATCH] meta-realtime: convert to new override syntax

2021-08-10 Thread Xu, Yanfei
On 8/10/21 6:30 PM, Bruce Ashfield wrote: **[Please note: This e-mail is from an EXTERNAL e-mail address] I already have the same automated conversion locally, but since I'm out of the office, I haven't pushed it yet. I see that I didn't push it to master-next, so I'll do that shortly.

[yocto-announce] [ANNOUNCEMENT] Yocto Project 3.1.10 (dunfell-23.0.10) is Released

2021-08-10 Thread Vineela
Hello, We are pleased to announce the Yocto Project 3.1.10 (dunfell-23.0.10) Release is now available for download. http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.10/poky-dunfell-23.0.10.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.10/poky-dunfell-23.0.10.tar.bz2 A gpg

[yocto] [ANNOUNCEMENT] Yocto Project 3.1.10 (dunfell-23.0.10) is Released

2021-08-10 Thread Vineela
Hello, We are pleased to announce the Yocto Project 3.1.10 (dunfell-23.0.10) Release is now available for download. http://downloads.yoctoproject.org/releases/yocto/yocto-3.1.10/poky-dunfell-23.0.10.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-3.1.10/poky-dunfell-23.0.10.tar.bz2 A gpg

Re: [yocto] New Override Syntax

2021-08-10 Thread Richard Purdie
On Tue, 2021-08-10 at 17:51 +, Darcy Watkins wrote: > My apologies. I don't think I made my question clear. I am asking about the  > compatibility of old style override syntax moving forward (and new style > syntax > in old versions). > > So if I continue using the old style override

Re: [yocto] [meta-rockchip][PATCH] rockchip-gpt-img: fix for new override syntax

2021-08-10 Thread Trevor Woerner
On Fri, Aug 6, 2021 at 12:56 PM Trevor Woerner wrote: > It looks like I missed a case for the new bitbake override syntax. My tests > weren't done from a fresh build so either a preexisting image was still > available, or the unfixed syntax caused a race. > > Signed-off-by: Trevor Woerner > ---

[yocto] Yocto Technical Team Minutes, Engineering Sync, for August 10, 2021

2021-08-10 Thread Trevor Woerner
Yocto Technical Team Minutes, Engineering Sync, for August 10, 2021 archive: https://docs.google.com/document/d/1ly8nyhO14kDNnFcW2QskANXW3ZT7QwKC5wWVDg9dDH4/edit == disclaimer == Best efforts are made to ensure the below is accurate and valid. However, errors sometimes happen. If any errors or

Re: [yocto] New Override Syntax

2021-08-10 Thread Michael Opdenacker
Hi Darcy, On 8/10/21 7:51 PM, Darcy Watkins wrote: > Hi, > > My apologies. I don't think I made my question clear. I am asking about the > compatibility of old style override syntax moving forward (and new style > syntax in old versions). > > So if I continue using the old style override

Re: [yocto] New Override Syntax

2021-08-10 Thread Darcy Watkins
Hi, My apologies. I don't think I made my question clear. I am asking about the compatibility of old style override syntax moving forward (and new style syntax in old versions). So if I continue using the old style override syntax (to ensure sure compatibility for use with older Yocto

[yocto] #yocto debbuging option under zeus

2021-08-10 Thread Monsees, Steven C (US) via lists.yoctoproject.org
I ran across the following under the Yocto Project Profiling and Tracing Manual, and after checking my ipk data files/layout, I was wondering if someone could tell me, if ipk is capable of performing a similar set of operations to install my debug data ?, and if so, what would be the correct

Re: [yocto] New Override Syntax

2021-08-10 Thread Michael Opdenacker
Hi again Darcy, On 8/10/21 6:35 PM, Michael Opdenacker wrote: > Where can we find until when the current releases are going to be > supported? Such information doesn't appear on > https://wiki.yoctoproject.org/wiki/Releases I haven't managed to get such information yet, so I opened a bug to make

Re: [yocto] yocto 3.1.3 cant seem to remove run-postinsts

2021-08-10 Thread Michael Opdenacker
Hi Jared, On 8/10/21 4:46 PM, jared_te...@dell.com wrote: > https://www.yoctoproject.org/docs/3.1.3/ref-manual/ref-manual.html#migration-2.1-miscellaneous-changes > > >

Re: [yocto] New Override Syntax

2021-08-10 Thread Michael Opdenacker
Hi Darcy, On 8/10/21 6:16 PM, Darcy Watkins wrote: > > Hi, > >   > > Does anyone know how long (or how many releases) that the old override > syntax will still be supported?  (Like a deprecation EOL cycle). > >   > > A corollary question: How far back in old releases is the new syntax >

[yocto] New Override Syntax

2021-08-10 Thread Darcy Watkins
Hi, Does anyone know how long (or how many releases) that the old override syntax will still be supported? (Like a deprecation EOL cycle). A corollary question: How far back in old releases is the new syntax supported? This potentially affects layers that have a single branch that support

[yocto] yocto 3.1.3 cant seem to remove run-postinsts

2021-08-10 Thread jared_terry
https://www.yoctoproject.org/docs/3.1.3/ref-manual/ref-manual.html#migration-2.1-miscellaneous-changes IMAGE_FEATURES="debug-tweaks read-only-rootfs" according to the manual having read-only-rootfs should remove run-postinsts and I still have it.  How can I get rid of this? local.conf:   

[yocto] Yocto Project Status WW32`21

2021-08-10 Thread Stephen Jolley
Current Dev Position: YP 3.4 M3 Next Deadline: 23rd Aug. 2021 YP 3.4 M3 build (Feature Freeze) Next Team Meetings: * Bug Triage meeting Thursday Aug. 12th at 7:30am PDT (

[linux-yocto][v5.10/standard/sdkv5.10/axxia] axxia: add support for linux-yocto v5.10

2021-08-10 Thread quanyang.wang
Hi Bruce, Would you please help create a new branch linux-yocto v5.10/standard/sdkv5.10/axxia and merge the patches as below to it? Thanks, Quanyang The following changes since commit b1ff0bb0de7abc5039e0db14f66e01eb0a3c24bb: Merge tag 'v5.10.57' into v5.10/standard/base (2021-08-08

[linux-yocto][v5.10/standard/preempt-rt/sdkv5.10/axxia] axxia: add support for linux-yocto v5.10

2021-08-10 Thread quanyang.wang
Hi Bruce, Would you please help create a new branch linux-yocto v5.10/standard/preempt-rt/sdkv5.10/axxia and merge the patches as below to it? Thanks, Quanyang The following changes since commit 9ad4f13ee44c39e890638d8a2157adcf830fc7bc: Merge branch 'v5.10/standard/base' into

Re: [linux-yocto] [meta-realtime][PATCH] meta-realtime: convert to new override syntax

2021-08-10 Thread Bruce Ashfield
I already have the same automated conversion locally, but since I'm out of the office, I haven't pushed it yet. I see that I didn't push it to master-next, so I'll do that shortly. Bruce On Tue, Aug 10, 2021 at 2:39 AM Yanfei Xu wrote: > This is the result of automated script conversion: > >

[linux-yocto] [meta-realtime][PATCH] meta-realtime: convert to new override syntax

2021-08-10 Thread Xu, Yanfei
This is the result of automated script conversion: scripts/contrib/convert-overrides.py converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Yanfei Xu --- recipes-tools/rt-app/rt-app.bb | 2 +- recipes-tools/schedtool-dl/schedtool-dl.bb | 2