|
VS: VS: [yocto] Make do_image_complete wait for an earlier task
Thanks, I'll give that a go!
I'll give do_populate_lic task a look.
We're working on this as a part of a workflow that utilizes the SPDX files. Our tool uploads the source code archived by the layer
Thanks, I'll give that a go!
I'll give do_populate_lic task a look.
We're working on this as a part of a workflow that utilizes the SPDX files. Our tool uploads the source code archived by the layer
|
By
Mikko Murto
·
#53568
·
|
|
[meta-zephyr][PATCH 2/2] zephyr-kernel-src.inc: set default preferred version to 2.6.0-rc1
From: Zbigniew Bodek <zbigniew.bodek@...>
Signed-off-by: Zbigniew Bodek <zbigniew.bodek@...>
---
recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc | 2 +-
1 file changed, 1
From: Zbigniew Bodek <zbigniew.bodek@...>
Signed-off-by: Zbigniew Bodek <zbigniew.bodek@...>
---
recipes-kernel/zephyr-kernel/zephyr-kernel-src.inc | 2 +-
1 file changed, 1
|
By
Wojciech Zmuda
·
#53567
·
|
|
[meta-zephyr][PATCH 1/2] zephyr-kernel-src-2.6.0-rc1.inc: Add support for zephyr kernel version 2.6.0-rc1
From: Zbigniew Bodek <zbigniew.bodek@...>
This version can be selected defining
PREFERRED_VERSION_zephyr-kernel ??= "2.6.0-rc1"
Signed-off-by: Zbigniew Bodek <zbigniew.bodek@...>
---
From: Zbigniew Bodek <zbigniew.bodek@...>
This version can be selected defining
PREFERRED_VERSION_zephyr-kernel ??= "2.6.0-rc1"
Signed-off-by: Zbigniew Bodek <zbigniew.bodek@...>
---
|
By
Wojciech Zmuda
·
#53566
·
|
|
[meta-zephyr][PATCH 0/2] Update Zephyr version to 2.6.0-rc1
From: Wojciech Zmuda <wojciech.zmuda@...>
2.6.0-rc1 has been released 9 days ago and contains a vast number
of improvements. Release notes available here:
From: Wojciech Zmuda <wojciech.zmuda@...>
2.6.0-rc1 has been released 9 days ago and contains a vast number
of improvements. Release notes available here:
|
By
Wojciech Zmuda
·
#53565
·
|
|
[meta-zephyr][PATCH 2/2] nrf52840dk_nrf52840.conf: Add nRF52840 DK support
From: Wojciech Zmuda <wojciech.zmuda@...>
Add support for Nordic Semiconductor nRF52840 Development
Kit board.
This is a generic MACHINE over nRF52 SoC family config
plus PyOCD flashing
From: Wojciech Zmuda <wojciech.zmuda@...>
Add support for Nordic Semiconductor nRF52840 Development
Kit board.
This is a generic MACHINE over nRF52 SoC family config
plus PyOCD flashing
|
By
Wojciech Zmuda
·
#53564
·
|
|
[meta-zephyr][PATCH 1/2] nrf52832.inc: Rename to nrf52.inc
From: Wojciech Zmuda <wojciech.zmuda@...>
The file is so generic anyway it can be targeted for
the nRF52 family without any harm.
Signed-off-by: Wojciech Zmuda
From: Wojciech Zmuda <wojciech.zmuda@...>
The file is so generic anyway it can be targeted for
the nRF52 family without any harm.
Signed-off-by: Wojciech Zmuda
|
By
Wojciech Zmuda
·
#53563
·
|
|
[meta-zephyr][PATCH 0/2] Add nRF52840 DK support
From: Wojciech Zmuda <wojciech.zmuda@...>
This patch set adds support for Nordic Semiconductor nRF5284
Development Kit board. Since there already is nRF52xx family
chip support added
From: Wojciech Zmuda <wojciech.zmuda@...>
This patch set adds support for Nordic Semiconductor nRF5284
Development Kit board. Since there already is nRF52xx family
chip support added
|
By
Wojciech Zmuda
·
#53562
·
|
|
Re: VS: [yocto] Make do_image_complete wait for an earlier task
I don't have much to go on but guessing, if you run some test and then rerun that
test, the second build would come from sstate. If a build comes from sstate, it willÂ
skip tasks that precede the
I don't have much to go on but guessing, if you run some test and then rerun that
test, the second build would come from sstate. If a build comes from sstate, it willÂ
skip tasks that precede the
|
By
Richard Purdie
·
#53561
·
|
|
Re: [qa-build-notification] QA notification for completed autobuilder build (yocto-3.3.1.rc1)
Hi all,
Intel and WR YP QA is planning for QA execution for YP build yocto-3.3.1.rc1. We are planning to execute following tests for this cycle:
OEQA-manual tests for following module:
1. OE-Core
2.
Hi all,
Intel and WR YP QA is planning for QA execution for YP build yocto-3.3.1.rc1. We are planning to execute following tests for this cycle:
OEQA-manual tests for following module:
1. OE-Core
2.
|
By
Sangeeta Jain
·
#53560
·
|
|
VS: [yocto] Make do_image_complete wait for an earlier task
That is odd indeed. I need to give it another go. As for accounting for sstate, no, at least not intentionally.
Public at https://github.com/doubleopen-project/meta-doubleopen. The usual disclaimers
That is odd indeed. I need to give it another go. As for accounting for sstate, no, at least not intentionally.
Public at https://github.com/doubleopen-project/meta-doubleopen. The usual disclaimers
|
By
Mikko Murto
·
#53559
·
|
|
Re: Make do_image_complete wait for an earlier task
This seems a little odd since image.bbclass has:
do_rootfs[recrdeptask] += "do_packagedata"
which means do_rootfs should only happen after all do_packagedata have run.
Your task is added before
This seems a little odd since image.bbclass has:
do_rootfs[recrdeptask] += "do_packagedata"
which means do_rootfs should only happen after all do_packagedata have run.
Your task is added before
|
By
Richard Purdie
·
#53558
·
|
|
Make do_image_complete wait for an earlier task
Hi,
I've created a task do_create_spdx that gets some data from packages after do_package. The task is currently added with `addtask do_create_spdx after do_package before do_packagedata` The data is
Hi,
I've created a task do_create_spdx that gets some data from packages after do_package. The task is currently added with `addtask do_create_spdx after do_package before do_packagedata` The data is
|
By
Mikko Murto
·
#53557
·
|
|
Re: vlc 3.0.11 package issue
usually it means lua version mismatch. You might be hitting same issue
as reported here
https://trac.videolan.org/vlc/ticket/25036
there is a patch attached to that ticket. Please try to apply that
usually it means lua version mismatch. You might be hitting same issue
as reported here
https://trac.videolan.org/vlc/ticket/25036
there is a patch attached to that ticket. Please try to apply that
|
By
Khem Raj
·
#53556
·
|
|
vlc 3.0.11 package issue
Hi ,
I am trying to run vlc-3.0.11 media player on my riscv target board. I am facing problem this package
[cli] lua interface error: Error loading script /usr/lib/vlc/lua/intf/cli.luac:
Hi ,
I am trying to run vlc-3.0.11 media player on my riscv target board. I am facing problem this package
[cli] lua interface error: Error loading script /usr/lib/vlc/lua/intf/cli.luac:
|
By
sateesh m
·
#53555
·
|
|
vlc 3.0.11 package issue
Hi ,
I am trying to run vlc-3.0.11 media player on my riscv target board. I am facing problem this package
[cli] lua interface error: Error loading script /usr/lib/vlc/lua/intf/cli.luac:
Hi ,
I am trying to run vlc-3.0.11 media player on my riscv target board. I am facing problem this package
[cli] lua interface error: Error loading script /usr/lib/vlc/lua/intf/cli.luac:
|
By
sateesh m
·
#53554
·
|
|
Enhancements/Bugs closed WW20!
All,
The below were the owners of enhancements or bugs closed during the last week!
Who
Count
randy.macleod@...
7
richard.purdie@...
5
mhalstead@...
1
timothy.t.orling@...
1
Grand
All,
The below were the owners of enhancements or bugs closed during the last week!
Who
Count
randy.macleod@...
7
richard.purdie@...
5
mhalstead@...
1
timothy.t.orling@...
1
Grand
|
By
Stephen Jolley
·
#53553
·
|
|
Current high bug count owners for Yocto Project 3.4
All,
Below is the list as of top 50 bug owners as of the end of WW20 of who have open medium or higher bugs and enhancements against YP 3.4. There are 115 possible work days left until the final
All,
Below is the list as of top 50 bug owners as of the end of WW20 of who have open medium or higher bugs and enhancements against YP 3.4. There are 115 possible work days left until the final
|
By
Stephen Jolley
·
#53552
·
|
|
Yocto Project Newcomer & Unassigned Bugs - Help Needed
All,
The triage team is starting to try and collect up and classify bugs which a newcomer to the project would be able to work on in a way which means people can find them. They're being listed on
All,
The triage team is starting to try and collect up and classify bugs which a newcomer to the project would be able to work on in a way which means people can find them. They're being listed on
|
By
Stephen Jolley
·
#53551
·
|
|
[ANNOUNCEMENT] Yocto Project 3.2.4 (gatesgarth-24.0.4) is Released
Hello,
We are pleased to announce the Yocto Project 3.2.4 (gatesgarth-24.0.4) Release is now available for download.
Hello,
We are pleased to announce the Yocto Project 3.2.4 (gatesgarth-24.0.4) Release is now available for download.
|
By
Vineela
·
#53550
·
|
|
Re: Statically linked libraries and license manifest
partly yes. there is a provision to disable static linking using DISABLE_STATIC, so atleast some of packages can be cleared of. depends are effective during build time and its the linking which
partly yes. there is a provision to disable static linking using DISABLE_STATIC, so atleast some of packages can be cleared of. depends are effective during build time and its the linking which
|
By
Khem Raj
·
#53549
·
|