|
Re: Problem with recipe that depends on a binary that is generated during its build
Ok I've found a solution by myself. Basically I just used the trick showed in the Technical FAQ and put a bunch of install commands in the do_install task.
Now the only problem I have is that the
Ok I've found a solution by myself. Basically I just used the trick showed in the Technical FAQ and put a bunch of install commands in the do_install task.
Now the only problem I have is that the
|
By
Matteo Iervasi
·
#51550
·
|
|
M+ & H bugs with Milestone Movements WW47
All,
YP M+ or high bugs which moved to a new milestone in WW47 are listed below:
Priority
Bug ID
Short Description
Changer
Owner
Was
Became
Medium+
13338
SDK build fails if image contains
All,
YP M+ or high bugs which moved to a new milestone in WW47 are listed below:
Priority
Bug ID
Short Description
Changer
Owner
Was
Became
Medium+
13338
SDK build fails if image contains
|
By
Stephen Jolley
·
#51549
·
|
|
Enhancements/Bugs closed WW47!
All,
The below were the owners of enhancements or bugs closed during the last week!
Who
Count
richard.purdie@...
5
randy.macleod@...
4
mhalstead@...
1
ross@...
1
Grand Total
11
Thanks,
All,
The below were the owners of enhancements or bugs closed during the last week!
Who
Count
richard.purdie@...
5
randy.macleod@...
4
mhalstead@...
1
ross@...
1
Grand Total
11
Thanks,
|
By
Stephen Jolley
·
#51548
·
|
|
Current high bug count owners for Yocto Project 3.3
All,
Below is the list as of top 50 bug owners as of the end of WW47 of who have open medium or higher bugs and enhancements against YP 3.3. There are 111 possible work days left until the final
All,
Below is the list as of top 50 bug owners as of the end of WW47 of who have open medium or higher bugs and enhancements against YP 3.3. There are 111 possible work days left until the final
|
By
Stephen Jolley
·
#51547
·
|
|
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
·
#51546
·
|
|
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
·
|