Re: [yocto] Build Ubuntu Distro #ubuntu #distro

2021-10-25 Thread Konrad Weihmann
No there isn't - with the yocto project you can build your own distribution not mimic other already available distributions. If you want to build Ubuntu you have to ask canonical. On 25.10.21 09:41, keyurthumar0...@gmail.com wrote: I want to build ubuntu distro using yocto. Is there a way

Re: [yocto] How to enable graphics acceleration on qemux86-64?

2021-10-25 Thread Alexander Kanavin
On Sun, 24 Oct 2021 at 23:29, Manuel Wagesreither wrote: > Hi all, > hi Alexander, > > I solved my problems. Things work fine now. Below I'm summing things up as > documentation for myself and also others in case this pops up in someones > search query. > Cheers :) you should also try this on

[yocto] Build Ubuntu Distro #ubuntu #distro

2021-10-25 Thread keyurthumar0402
I want to build ubuntu distro using yocto. Is there a way for that ? -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#55131): https://lists.yoctoproject.org/g/yocto/message/55131 Mute This Topic: https://lists.yoctoproject.org/mt/86572273/21656 Mute

[yocto] dunfell: pkgconfig-native build fails in existing Yocto BSP

2021-10-25 Thread Matthias Klein
Hello, our dunfell based yocto no longer builds in the pkgconfig-native section. I tried it in an Ubuntu 18.04 and Debian 10 Docker container. The build always aborts as follows: checking thread related cflags... -D_REENTRANT | checking for pthread_create/pthread_join... no | checking for

Re: [yocto] dunfell: pkgconfig-native build fails in existing Yocto BSP

2021-10-25 Thread Ahmed Hossam
Hello, We also have the same issue with similar in-docker builds, a workaround for the issue is mentioned here: https://bugzilla.yoctoproject.org/show_bug.cgi?id=14519 until the fix is backported to dunfell. Best Regards, Ahmed Hossam -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages

Re: [yocto] dunfell: pkgconfig-native build fails in existing Yocto BSP

2021-10-25 Thread Richard Purdie
On Mon, 2021-10-25 at 06:50 +, Matthias Klein wrote: > Hello, > > our dunfell based yocto no longer builds in the pkgconfig-native section. I > tried it in an Ubuntu 18.04 and Debian 10 Docker container. > The build always aborts as follows: > > checking thread related cflags...

Re: [yocto] bbappend usage

2021-10-25 Thread Robert P. J. Day
On Mon, 25 Oct 2021, Monsees, Steven C (US) via lists.yoctoproject.org wrote: > If I am building an image “image-ABC”, and it is composed of a > number recipes, and for some of these recipes I may NOT want to > install their final components within my image… > > Which is the best place to modify

Re: [yocto] dunfell: pkgconfig-native build fails in existing Yocto BSP

2021-10-25 Thread Matthias Klein
Hello Richard, Thanks for the quick help! Best regards, Matthias -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#55145): https://lists.yoctoproject.org/g/yocto/message/55145 Mute This Topic: https://lists.yoctoproject.org/mt/86571641/21656 Group

Re: [yocto] bbappend usage

2021-10-25 Thread Monsees, Steven C (US) via lists.yoctoproject.org
I am looking to selectively remove portions of 1or 2 components I will not be using from my running image -Original Message- From: yocto@lists.yoctoproject.org On Behalf Of Leon Woestenberg Sent: Monday, October 25, 2021 9:12 AM To: Monsees, Steven C (US) Cc:

[yocto] How to iherit class based on a conditional variable? #sysvinit #systemd

2021-10-25 Thread Bel Hadj Salem Talel
Hello, I have a recipe that installs a simple bash script to run on startup. As you all know, there is systemd and sysvinit. I need to add support for both init managers. I can do : SRC_URI_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'file://script.service',

Re: [yocto] bbappend usage

2021-10-25 Thread Leon Woestenberg
Hello Steve, Is the approach where you remove the recipes from the image an option? Is there a reason why you want to build the recipes that you do not want to appear in your image? Regards, Leon. -- Leon Woestenberg l...@sidebranch.com T: +31 40 711 42 76 M: +31 6 472 30 372 Sidebranch

Re: [yocto] bbappend usage

2021-10-25 Thread Monsees, Steven C (US) via lists.yoctoproject.org
No, you got it wromg... I have a buildable image which has all the components necessary, I want to remove some overhead installed by some components that I will not be within my running application... -Original Message- From: yocto@lists.yoctoproject.org On Behalf Of Robert P. J.

Re: [yocto] bbappend usage

2021-10-25 Thread Alexander Kanavin
There is no one-size-fits-all answer to this. It helps if you provide specifics: what components and what portions of them and why. Alex On Mon, 25 Oct 2021 at 15:26, Monsees, Steven C (US) via lists.yoctoproject.org wrote: > > I am looking to selectively remove portions of 1or 2 components I

[yocto] [hardknott][yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-10-25 Thread Anuj Mittal
From: Trevor Gamblin Add "-l 52" to PARALLEL_MAKE in config.json to limit Make and Ninja builds based on the detected system load. With this option added, if either tool has at least one job running and detects that the system load exceeds the given value, it will wait until either the system

[yocto] bbappend usage

2021-10-25 Thread Monsees, Steven C (US) via lists.yoctoproject.org
Hello: If I am building an image "image-ABC", and it is composed of a number recipes, and for some of these recipes I may NOT want to install their final components within my image... Which is the best place to modify the build with bbappend ? Would I modify a recipe's do_install

Re: [yocto] bbappend usage

2021-10-25 Thread Konrad Weihmann
The super yoctoish way would be to alter the packaging of the recipe to your needs. Let's assume recipe-a consists of the files foo bar and it would package both files into recipe-a pkg. In the actual image you only install packages into a file system, so if you don't want bar to be

Re: [yocto] How to iherit class based on a conditional variable? #sysvinit #systemd

2021-10-25 Thread Alexander Kanavin
It's fine to inherit both classes and install both files without even checking DISTRO_FEATURES. There's behind the scenes magic that will do the right thing depending on what init manager is chosen in the distro config. Alex On Mon, 25 Oct 2021 at 14:38, Bel Hadj Salem Talel wrote: > Hello, >

Re: [yocto] [hardknott][yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-10-25 Thread Steve Sakoman
On Mon, Oct 25, 2021 at 7:00 AM Khem Raj wrote: > > On Mon, Oct 25, 2021 at 9:46 AM Steve Sakoman wrote: > > > > On Mon, Oct 25, 2021 at 6:09 AM Khem Raj wrote: > > > > > > > > > > > > On 10/25/21 7:07 AM, Anuj Mittal wrote: > > > > From: Trevor Gamblin > > > > > > > > Add "-l 52" to

Re: [yocto] [hardknott][yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-10-25 Thread Khem Raj
On Mon, Oct 25, 2021 at 9:46 AM Steve Sakoman wrote: > > On Mon, Oct 25, 2021 at 6:09 AM Khem Raj wrote: > > > > > > > > On 10/25/21 7:07 AM, Anuj Mittal wrote: > > > From: Trevor Gamblin > > > > > > Add "-l 52" to PARALLEL_MAKE in config.json to limit Make and Ninja > > > builds based on the

Re: [yocto] [hardknott][yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-10-25 Thread Khem Raj
On 10/25/21 7:07 AM, Anuj Mittal wrote: From: Trevor Gamblin Add "-l 52" to PARALLEL_MAKE in config.json to limit Make and Ninja builds based on the detected system load. With this option added, if either tool has at least one job running and detects that the system load exceeds the given

Re: [yocto] [hardknott][yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-10-25 Thread Steve Sakoman
On Mon, Oct 25, 2021 at 6:09 AM Khem Raj wrote: > > > > On 10/25/21 7:07 AM, Anuj Mittal wrote: > > From: Trevor Gamblin > > > > Add "-l 52" to PARALLEL_MAKE in config.json to limit Make and Ninja > > builds based on the detected system load. With this option added, if > > either tool has at

Re: [yocto] [hardknott][yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-10-25 Thread Steve Sakoman
On Mon, Oct 25, 2021 at 6:46 AM Steve Sakoman via lists.yoctoproject.org wrote: > > On Mon, Oct 25, 2021 at 6:09 AM Khem Raj wrote: > > > > > > > > On 10/25/21 7:07 AM, Anuj Mittal wrote: > > > From: Trevor Gamblin > > > > > > Add "-l 52" to PARALLEL_MAKE in config.json to limit Make and Ninja

Re: [yocto] [hardknott][yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-10-25 Thread Khem Raj
On Mon, Oct 25, 2021 at 10:30 AM Steve Sakoman wrote: > > On Mon, Oct 25, 2021 at 7:00 AM Khem Raj wrote: > > > > On Mon, Oct 25, 2021 at 9:46 AM Steve Sakoman wrote: > > > > > > On Mon, Oct 25, 2021 at 6:09 AM Khem Raj wrote: > > > > > > > > > > > > > > > > On 10/25/21 7:07 AM, Anuj Mittal

[yocto] OpenEmbedded Happy Hour October 27 9pm/2100 UTC

2021-10-25 Thread Denys Dmytriyenko
All, Our next OpenEmbedded Happy Hour is on October 27 for Asia/Pacific timezones @ 2100/9pm UTC (5pm ET / 2pm PT): https://www.openembedded.org/wiki/Calendar https://www.timeanddate.com/worldclock/fixedtime.html?msg=OpenEmbedded+Happy+Hour+October+27=20211027T21 -- Regards, Denys Dmytriyenko

[yocto] [PATCH yocto-autobuilder-helper] auh: update the from address to valid domain

2021-10-25 Thread Michael Halstead
The auh.yoctoproject.org domain is no longer used and cannot be validated. Signed-off-by: Michael Halstead --- scripts/auh-config/upgrade-helper.conf | 2 +- scripts/setup-auh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

[yocto] Enhancements/Bugs closed WW43!

2021-10-25 Thread Stephen Jolley
All, The below were the owners of enhancements or bugs closed during the last week! Who Count richard.pur...@linuxfoundation.org 3 michael.opdenac...@bootlin.com 3 randy.macl...@windriver.com 2 douglas.ro...@taitradio.com 1 devendra.tew...@gmail.com 1

[yocto] Yocto Project Newcomer & Unassigned Bugs - Help Needed

2021-10-25 Thread Stephen Jolley
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 the triage page under the appropriate heading:

[yocto] Current high bug count owners for Yocto Project 3.5

2021-10-25 Thread Stephen Jolley
All, Below is the list as of top 50 bug owners as of the end of WW43 of who have open medium or higher bugs and enhancements against YP 3.5. There are 128 possible work days left until the final release candidates for YP 3.5 needs to be released. Who Count r...@burtonini.com 37

Re: [linux-yocto][linux-yocto v5.10/standard/sdkv5.10/xlnx-soc][PATCH 1/1] Revert "mtd: spi-nor: Simplify odd address handling in read for dual parallel mode"

2021-10-25 Thread Bruce Ashfield
merged. Bruce In message: [linux-yocto][linux-yocto v5.10/standard/sdkv5.10/xlnx-soc][PATCH 1/1] Revert "mtd: spi-nor: Simplify odd address handling in read for dual parallel mode" on 21/10/2021 quanyang.w...@windriver.com wrote: > From: Quanyang Wang > > This reverts commit

Re: [linux-yocto][yocto-kernel-cache yocto-5.10][PATCH 1/1] nxp-imx8: disable TRANSPARENT_HUGEPAGE and CONFIG_LEDS_TRIGGER_CPU

2021-10-25 Thread Bruce Ashfield
merged. Bruce In message: [linux-yocto][yocto-kernel-cache yocto-5.10][PATCH 1/1] nxp-imx8: disable TRANSPARENT_HUGEPAGE and CONFIG_LEDS_TRIGGER_CPU on 21/10/2021 Xiaolei Wang wrote: > Fix a warning 'CONFIG_TRANSPARENT_HUGEPAGE' last > val (y) and .config val (n) do not match and >

Re: [linux-yocto]: [kernel/kernel-rt]: nxp-ls1043: arch: arm64: dts: add delay between CS and CLK signal for flash device

2021-10-25 Thread Bruce Ashfield
In message: [linux-yocto]: [kernel/kernel-rt]: nxp-ls1043: arch: arm64: dts: add delay between CS and CLK signal for flash device on 25/10/2021 Meng Li wrote: > From: Limeng > > Hi Bruce, > > This patch is used to fix flash write/read sequence issue. > Could you please help merge the patch