Re: [yocto] Reducing the size of the image by optimizing python

2019-10-21 Thread Ross Burton
On 19/10/2019 13:45, Abhi Arora wrote: IMAGE_INSTALL_append = " \     python3 \ This is installing "all of python". If you want to trim your Python installation then don't do that, instead determine what libraries you *actually* need and explicitly add those. Ross -- ___

[yocto] [prelink-cross] Bug 13529 add SPDX identifier

2019-10-21 Thread Yann CARDAILLAC
Hi Mark Hatle, Jakub Jelinek, I'm currently beginning the work on bug 13529: https://bugzilla.yoctoproject.org/show_bug.cgi?id=13529 The purpose is to add SPDX identifier to scripts and sources. Most of the sources have licences on the sources, however some of them don't, and I've question abou

[yocto] [PATCH] [auto-upgrade-helper] Add SPDX identifier to auto-upgrade-helper

2019-10-21 Thread Yann CARDAILLAC
Hi guys, I'm working on bug : https://bugzilla.yoctoproject.org/show_bug.cgi?id=13531 I've add GPLV2-or-later to all the sources, is there any modification you want to add? Best regards, Yann CARDAILLAC -- [image: SMILE] 20 rue des Jardins 92600 Asnières-sur-Seine *Yann

[yocto] Ext4 filesystem name does not exist

2019-10-21 Thread Muhlenkamp, Lewis
Hello, I have been doing builds using a Docker setup on a VMware ESXi 6.5 virtual machine running Ubuntu 18.04 for the past year. I have been asked to move to building on a VM in Azure. I created a VM in Azure using the Ubuntu 18.04 image from Canonical. When I try to do the same build in Az

Re: [yocto] [OE-core] [prelink-cross] Bug 13529 add SPDX identifier

2019-10-21 Thread Mark Hatle
On 10/21/19 4:43 AM, Yann CARDAILLAC wrote: > Hi Mark Hatle, Jakub Jelinek, Jakub is no longer supporting this code, but he may have valuable insights into licensing. > I'm currently beginning the work on bug 13529: > > https://bugzilla.yoctoproject.org/show_bug.cgi?id=13529 > > The purpose is

[yocto] [layerindex-web] Add SPDX Identifier

2019-10-21 Thread Yann CARDAILLAC
Hi, https://bugzilla.yoctoproject.org/show_bug.cgi?id=13527 I'm beginning the work of updating the layerindex-web repo, this one is a bit tricky, how should I treat the files generated using Django ? *For now I've given them MIT as for the other hand written script. However I'm kind of worried t

[yocto] Error while building Toolchain for IMX

2019-10-21 Thread Mohammed Abdul Mubeen
Hi Team, I have tried building a customized toolchain for IMX based board using Yocto warrior release. I am stuck with the below error, and I am unable to understand how to get to the root cause. NOTE: Installing globbed packages... ERROR: Error executing a python function in exec_python_func()

Re: [yocto] Reducing the size of the image by optimizing python

2019-10-21 Thread Mike Looijmans
> Optimising to just pyc files is an optimisation further than most > people find they need and will be much harder to do. It's actually quite simple, just add a bbappend to the python recipe that puts all .py files into the "dbg" or newly created "src" package. Or simply delete all .py files in

[yocto] Useradd: crypted passwords longer than 8 characters

2019-10-21 Thread Lukasz Zemla
What is the best way in Yocto (warrior) to add crypted password to /etc/shadow during buildtime? Using useradd.bbclass in a standard way we may add only passwords <= 8 characters. "-p" parameterr followed by the output of "openssl passwd -crypt pAsswOrd" works fine. I thought that class may be

Re: [yocto] Useradd: crypted passwords longer than 8 characters

2019-10-21 Thread Mark Hatle
Crypt the password yourself and pass it in to the adduser command. --Mark On 10/21/19 10:25 AM, Lukasz Zemla wrote: > What is the best way in Yocto (warrior) to add crypted password to > /etc/shadow during buildtime? > > Using useradd.bbclass in a standard way we may add only passwords <= 8 >

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

2019-10-21 Thread Stephen K 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: https://wiki.yoctoproject.org/wiki/Bug_Triage#New

[yocto] OEDEM at Yocto Project Summit after ELCE

2019-10-21 Thread Philip Balister
Just a reminder we are holding a developer meeting as part of the Yocto Project Summit after ELCE in Lyon next week. Please review the agenda and add items. We need to create a schedule with times to help people involved with day 2 of the Yocto Project Summit. Help us out by getting everything you

[yocto] [yocto-autobuilder2][yocto-autobuilder-helper]Updated the Stand-alone Installation details

2019-10-21 Thread Marco
Modified the README-Guide.md. See thread "[yocto-autobuilder-helper] Replaced hardcoded BASE_HOMEDIR directory" -- Marco From 30ed13445a01a2af759791cb39526437b43906c0 Mon Sep 17 00:00:00 2001 From: Marco Cavallini Date: Mon, 21 Oct 2019 18:38:22 +0200 Subject: [PATCH] README-Guide.md: Updated the

Re: [yocto] Useradd: crypted passwords longer than 8 characters

2019-10-21 Thread Bryan Evenson
Lukasz, You can use the the EXTRA_USER_PARAMS variable in your image recipe: https://www.yoctoproject.org/docs/current/mega-manual/mega-manual.html#ref-classes-extrausers. Both usermod and useradd take a plaintext password with the -P option, but I believe the password is then encrypted prior

Re: [yocto] [layerindex-web] Add SPDX Identifier

2019-10-21 Thread Paul Eggleton
Hi Yann Thanks for looking into this. On Tuesday, 22 October 2019 4:15:03 AM NZDT Yann CARDAILLAC wrote: > https://bugzilla.yoctoproject.org/show_bug.cgi?id=13527 > > I'm beginning the work of updating the layerindex-web repo, this one is a > bit tricky, how should I treat the files generated us