|
Yocto Project Status WW47'20
Current Dev Position: YP 3.3 M1 development
Next Deadline: 7th December 2020 YP 3.3 M1 build
Next Team Meetings:
Bug Triage meeting Thursday Nov. 26th at 7:30am PDT
Current Dev Position: YP 3.3 M1 development
Next Deadline: 7th December 2020 YP 3.3 M1 build
Next Team Meetings:
Bug Triage meeting Thursday Nov. 26th at 7:30am PDT
|
By
Stephen Jolley
·
#51545
·
|
|
Re: How to add python application into the build.
#python
#toolchain
Hi Vijay
Reading and following the section about "Writing a New Recipe" in the
manual is probably a good starting
Hi Vijay
Reading and following the section about "Writing a New Recipe" in the
manual is probably a good starting
|
By
Nicolas Jeker
·
#51544
·
|
|
How to add python application into the build.
#python
#toolchain
Hi,
I'm new to the Yocto Project, trying to include my python application into the build. Can anyone guide me how to write a bitbake recipe .bb file or any example recipe would be helpful.
Thank &
Hi,
I'm new to the Yocto Project, trying to include my python application into the build. Can anyone guide me how to write a bitbake recipe .bb file or any example recipe would be helpful.
Thank &
|
By
Vijay Rakesh Munganda
·
#51543
·
|
|
Re: Yocto Project Outreachy interns
Thank you all,
I appreciate the opportunity given to me to intern with the Yocto Project. I am excited about this internship and I look forward to working with you on my project.
Sincerely,
Dorinda.
Thank you all,
I appreciate the opportunity given to me to intern with the Yocto Project. I am excited about this internship and I look forward to working with you on my project.
Sincerely,
Dorinda.
|
By
Dorinda
·
#51542
·
|
|
Re: Python function caching question
Hi Michael,
Use an anonymous python function that sets VERSION, e.g.:
python __anonymous() {
d.setVar('VERSION', find_version(d))
}
as anonymous python functions are always executed during
Hi Michael,
Use an anonymous python function that sets VERSION, e.g.:
python __anonymous() {
d.setVar('VERSION', find_version(d))
}
as anonymous python functions are always executed during
|
By
Quentin Schulz
·
#51541
·
|
|
Re: Yocto Project Outreachy interns
Thank you all so much for having us. I learned so much about embedded linux and the Yocto Project in a very short while. I can't wait to start working with you and on my project.
Cheers,
Ida.
Thank you all so much for having us. I learned so much about embedded linux and the Yocto Project in a very short while. I can't wait to start working with you and on my project.
Cheers,
Ida.
|
By
Meh Mbeh Ida Delphine <idadelm@...>
·
#51540
·
|
|
Re: Disable systemd-timesyncd.service in image
Yes SYSTEMD_AUTO_ENABLE_${PN} doesn't apply to systemd recipe core services as they are not installed as separate packages.
But I got it working now.
The default enable/disable service are defined in
Yes SYSTEMD_AUTO_ENABLE_${PN} doesn't apply to systemd recipe core services as they are not installed as separate packages.
But I got it working now.
The default enable/disable service are defined in
|
By
Damien LEFEVRE
·
#51539
·
|
|
Yocto Project Outreachy interns
Dear all,
We are very excited to be part of the Outreachy program again for the
December round this year, let me congratulate Ida and Dorinda for
being accepted as interns for the next three
Dear all,
We are very excited to be part of the Outreachy program again for the
December round this year, let me congratulate Ida and Dorinda for
being accepted as interns for the next three
|
By
Nicolas Dechesne
·
#51538
·
|
|
Re: Python function caching question
If you set BB_DONT_CACHE = "1" in the recipe, it will force the recipe
to reparse each time. That should cause it to rerun find_version and
then change hash when the value changes. Its how SRCREV =
If you set BB_DONT_CACHE = "1" in the recipe, it will force the recipe
to reparse each time. That should cause it to rerun find_version and
then change hash when the value changes. Its how SRCREV =
|
By
Richard Purdie
·
#51537
·
|
|
Re: Python function caching question
I do not want do_compile to run again, it rebuilds the whole image.
What is the best way to always run find_version?
I do not want do_compile to run again, it rebuilds the whole image.
What is the best way to always run find_version?
|
By
Michael Callahan <coder.callahan@...>
·
#51536
·
|
|
Re: OE/YP equivalent to 'mtree'?
It don't see anything in the layer index:
https://layers.openembedded.org/layerindex/branch/master/recipes/?q=mtree
but the source has a configure file:
(Ubuntu: apt-get source mtree-netbsd)
so
It don't see anything in the layer index:
https://layers.openembedded.org/layerindex/branch/master/recipes/?q=mtree
but the source has a configure file:
(Ubuntu: apt-get source mtree-netbsd)
so
|
By
Randy MacLeod
·
#51535
·
|
|
Re: Disable systemd-timesyncd.service in image
The service is deployed with standard systemd package, which doesn't have that set as far as I see it (no SYSTEMD_AUTO_ENABLE_${PN} in the latest recipe revision)
I think, after browsing through the
The service is deployed with standard systemd package, which doesn't have that set as far as I see it (no SYSTEMD_AUTO_ENABLE_${PN} in the latest recipe revision)
I think, after browsing through the
|
By
Konrad Weihmann <kweihmann@...>
·
#51534
·
|
|
Re: Disable systemd-timesyncd.service in image
I think you need to set SYSTEMD_AUTO_ENABLE = “disable” (actually any value other than “enable”) in your bbappend.
(It looks like SYSTEMD_AUTO_ENABLE_${PN} is intended to work too, but I
I think you need to set SYSTEMD_AUTO_ENABLE = “disable” (actually any value other than “enable”) in your bbappend.
(It looks like SYSTEMD_AUTO_ENABLE_${PN} is intended to work too, but I
|
By
Joel A Cohen
·
#51533
·
|
|
Disable systemd-timesyncd.service in image
Hi,
I would like to have systemd-timesyncd.service as part of an image but have it disabled by default.
Right now it is enabled by default which causes some issues.
I've tried
Hi,
I would like to have systemd-timesyncd.service as part of an image but have it disabled by default.
Right now it is enabled by default which causes some issues.
I've tried
|
By
Damien LEFEVRE
·
#51532
·
|
|
OE/YP equivalent to 'mtree'?
colleague wants to know if there is something available
in an OE/YP layer equivalent to mtree:
https://linux.die.net/man/8/mtree
i'm looking at a few possibilities right now but nothing
seems
colleague wants to know if there is something available
in an OE/YP layer equivalent to mtree:
https://linux.die.net/man/8/mtree
i'm looking at a few possibilities right now but nothing
seems
|
By
Robert P. J. Day
·
#51531
·
|
|
Re: strange meta-security bbappend file with two percent signs
please send a patch to make to correct the situation.
-armin
please send a patch to make to correct the situation.
-armin
|
By
Armin Kuster
·
#51530
·
|
|
Re: Hardware video decode on RPi3
Thanks, Khem.
Yes, I am. I actually discovered what the problem was: I built my system for 64-bit but Broadcom's proprietary libraries are 32-bit. I switched the system to 32-bit and now gst-inspect
Thanks, Khem.
Yes, I am. I actually discovered what the problem was: I built my system for 64-bit but Broadcom's proprietary libraries are 32-bit. I switched the system to 32-bit and now gst-inspect
|
By
Rudolf J Streif
·
#51529
·
|
|
Re: Packagegroup Understanding
Ok - I understand now.
Thanks for the explanation.
Charlie
Ok - I understand now.
Thanks for the explanation.
Charlie
|
By
Charlie Davies
·
#51528
·
|
|
Re: Packagegroup Understanding
<charles.davies@...> wrote:
This is correct. When at least one (binary) package is needed from a
recipe, then the recipe is built, and all the resulting packages are
built.
So when you
<charles.davies@...> wrote:
This is correct. When at least one (binary) package is needed from a
recipe, then the recipe is built, and all the resulting packages are
built.
So when you
|
By
Nicolas Dechesne
·
#51527
·
|
|
Packagegroup Understanding
Hi All,
I am seeing some behaviour when creating my own packagegroups which I do not quite understand.
Using the example from the mega-manual:
DESCRIPTION = "My Custom Package Groups" inherit
Hi All,
I am seeing some behaviour when creating my own packagegroups which I do not quite understand.
Using the example from the mega-manual:
DESCRIPTION = "My Custom Package Groups" inherit
|
By
Charlie Davies
·
#51526
·
|