[yocto] Small documentation issue

2018-02-19 Thread Zoran Stojsavljevic
Hello, Just to point to the documentation issue on YOCTO Projects wiki page: https://wiki.yoctoproject.org/wiki/FAQ:How_do_I_set_or_change_the_root_password This line: inherit extrausers Should be changed as: INHERIT += "extrausers" To be inline with bitbake syntax. It is somehow confusing.

[yocto] [layerindex-web][PATCH 3/6] Show layer description with newlines in layer detail

2018-02-19 Thread Paul Eggleton
A lot of people enter line breaks in their layer descriptions hoping that these will show up in the layer description, but of course since they are being displayed as part of an HTML document, they don't by default. Use a style in the description paragraph to ensure that they do. Signed-off-by:

[yocto] [layerindex-web][PATCH 2/6] Add statistics page

2018-02-19 Thread Paul Eggleton
Add a page with basic statistics for the index - number of layers, recipes, classes, machines and distros on an overall basis (distinct names) and per branch, since I've been asked a few times for this kind of information. It's currently only linked from the Tools menu for logged-in users, but the

[yocto] [layerindex-web][PATCH 6/6] README: update dependency versions

2018-02-19 Thread Paul Eggleton
Update the minor version of Django, and replace the list of dependencies with a pointer to requirements.txt since there's not much point maintaining that in two places (and the README wasn't complete anyway). Signed-off-by: Paul Eggleton --- README | 13

[yocto] [layerindex-web][PATCH 5/6] requirements.txt: update some dependency versions

2018-02-19 Thread Paul Eggleton
Use latest tested versions (though we pin djangorestframework at 3.6.4 since that is the last version that supports Django 1.8), and add new resulting dependencies. Signed-off-by: Paul Eggleton --- requirements.txt | 34 +++--- 1 file

[yocto] [layerindex-web][PATCH 1/6] update.py: fix Ctrl+C behaviour

2018-02-19 Thread Paul Eggleton
If the user hit Ctrl+C during the initial info gathering then it didn't break out of the loop in update.py, so you had to hit Ctrl+C for as many layers as were involved in the update. Look for exit code 254 from update_layer.py and stop if it is returned since that indicates Ctrl+C has been used.

[yocto] [layerindex-web][PATCH 4/6] requirements.txt: add missing dependencies

2018-02-19 Thread Paul Eggleton
These are dependencies of items already listed in requirements.txt, so nothing new. Signed-off-by: Paul Eggleton --- requirements.txt | 5 + 1 file changed, 5 insertions(+) diff --git a/requirements.txt b/requirements.txt index 7cd741b..af6ab5a 100644 ---

Re: [yocto] Removing busybox completely from the generated image

2018-02-19 Thread Iván Castell
I have tried breaking apart packagegroup-core-boot, making a copy in my custom layer, removing the line referencing busybox: ## VIRTUAL-RUNTIME_login_manager ?= "busybox" But now bitbake complains with an error message: ERROR: Nothing RPROVIDES '${VIRTUAL-RUNTIME_login_manager}' It

Re: [yocto] Removing busybox completely from the generated image

2018-02-19 Thread Maxin B. John
Hi, On Mon, Feb 19, 2018 at 02:17:38AM -0800, Khem Raj wrote: > On Mon, Feb 19, 2018 at 12:35 AM, Iván Castell > wrote: > > I have tried breaking apart packagegroup-core-boot, making a copy in my > > custom layer, removing the line referencing busybox: > > > > ##

Re: [yocto] Removing busybox completely from the generated image

2018-02-19 Thread Alexander Kanavin
On 02/19/2018 10:35 AM, Iván Castell wrote: I have tried breaking apart packagegroup-core-boot, making a copy in my custom layer, removing the line referencing busybox:     ## VIRTUAL-RUNTIME_login_manager ?= "busybox" But now bitbake complains with an error message:     ERROR: Nothing

Re: [yocto] Removing busybox completely from the generated image

2018-02-19 Thread Khem Raj
On Mon, Feb 19, 2018 at 12:35 AM, Iván Castell wrote: > I have tried breaking apart packagegroup-core-boot, making a copy in my > custom layer, removing the line referencing busybox: > > ## VIRTUAL-RUNTIME_login_manager ?= "busybox" > > But now bitbake complains

Re: [yocto] Removing busybox completely from the generated image

2018-02-19 Thread Iván Castell
2018-02-19 16:18 GMT+01:00 Maxin B. John : > Hi, > > On Mon, Feb 19, 2018 at 02:17:38AM -0800, Khem Raj wrote: > > On Mon, Feb 19, 2018 at 12:35 AM, Iván Castell > > wrote: > > > I have tried breaking apart packagegroup-core-boot, making a copy in

[yocto] [YOCTO] add a new partition during flash with mfgtools

2018-02-19 Thread Thibaut SARRAZIN
Hello everybody, I don't find solution to add a new partition to my emmc directly during the flash. I don't know if I need to modify the u-boot-fslc recipe or if there is another solution. board : mx6qroj Thanks you all  for your help, -- ___

Re: [yocto] [meta][PATCH] ptest.bbclass: fix path for multilib

2018-02-19 Thread Kyle Russell
That's reasonable, but how would you propose that work? An analogous fix for ptest-runner is to use ${libdir} instead of /usr/lib (leaving the bbclass intact), but that just flips the problem if you try to run lib32-libfoo-ptest using a 64-bit ptest-runner with default arguments (not specifying

Re: [yocto] Removing busybox completely from the generated image

2018-02-19 Thread Paul Eggleton
On Monday, 19 February 2018 11:21:20 PM NZDT Alexander Kanavin wrote: > On 02/19/2018 10:35 AM, Iván Castell wrote: > > I have tried breaking apart packagegroup-core-boot, making a copy in my > > custom layer, removing the line referencing busybox: > > > > ## VIRTUAL-RUNTIME_login_manager