Re: [yocto] bitbake -c populate_sdk generates locale error

2019-11-13 Thread Matt Schepers
ks for reaching out to me! From: Khem Raj Sent: Wednesday, November 13, 2019 10:05 AM To: Matt Schepers; yocto@yoctoproject.org Subject: Re: [yocto] bitbake -c populate_sdk generates locale error On Wed, 2019-11-13 at 16:12 +, Matt Schepers wrote: > Hi, > > Wh

[yocto] bitbake -c populate_sdk generates locale error

2019-11-13 Thread Matt Schepers
Hi, When I run 'bitbake -c populate_sdk' I get an error about the locale not being found. I have tried setting the locale in local.conf but that didn't seem to help. The odd thing is that 'bitbake ' works just fine. Respectfully, Matt Schepers ERROR: telspan-dh3-1.0-

Re: [yocto] rdepends = "python3-modules" in recipe does not install python3-modules in image

2018-01-09 Thread Matt Schepers
I can get it to work by forcing python3-modules in the IMAGE_INSTALL variable, but this is not how I expect yocto to work based on the documentation. From: Alexander Kanavin Sent: Sunday, January 7, 2018 5:10:46 AM To: Matt Schepers Cc: yocto@yoctoproj

Re: [yocto] rdepends = "python3-modules" in recipe does not install python3-modules in image

2018-01-06 Thread Matt Schepers
How do I check what PN is set to? I can see users-dbg.rpm and users-doc.rpm in the rpm folder. The recipe name is users.bb Thanks, Matt On Jan 5, 2018, at 11:38 AM, Alexander Kanavin mailto:alexander.kana...@linux.intel.com>> wrote: On 01/05/2018 06:41 PM, Matt Schepers wrote: This do

Re: [yocto] recipe for custom python package not on pypi

2018-01-05 Thread Matt Schepers
Thank you. This worked! From: Giordon Stark Sent: Wednesday, January 3, 2018 4:45:59 PM To: Matt Schepers Cc: yocto@yoctoproject.org Subject: Re: [yocto] recipe for custom python package not on pypi Hi, https://github.com/kratsg/meta-l1calo/blob/master

[yocto] adding users to image with standalone recipe

2018-01-05 Thread Matt Schepers
Folks, I am trying to add users to my rootfs. When I add this to the image recipe it works: - ROOT_PASSWORD = "secret" IGU_PASSWORD = "secret" EXTRA_USERS_PARAMS = "\ groupadd igu; \ useradd -p `openssl passwd ${IGU_PASSWORD}` igu; \

[yocto] rdepends = "python3-modules" in recipe does not install python3-modules in image

2018-01-05 Thread Matt Schepers
Folks, I have a .bb file for a setuptools based python program I am installing to my image. The python program needs a large subset of what's available in the python standard library and therefore I need to install "python3-modules" in my image to get the python interpreter to work. This is my

[yocto] recipe for custom python package not on pypi

2018-01-03 Thread Matt Schepers
Folks, I'm looking for a recipe that will install a custom python package to the python site-packages on the rootfs. The Python package uses setuptools and the standard setup.py and is not available on pypi because I wrote it. In general I am having difficulty finding a recipe for a custom pack

Re: [yocto] Trying to filter out 2 strings from EXTRA_OECONF, why doesn't this work?

2017-11-17 Thread Matt Schepers
.bbappend files are not evaluated in order. From: Alexander Kanavin Sent: Friday, November 17, 2017 12:03 AM To: Matt Schepers; yocto@yoctoproject.org Subject: Re: [yocto] Trying to filter out 2 strings from EXTRA_OECONF, why doesn't this work? On 1

[yocto] Trying to filter out 2 strings from EXTRA_OECONF, why doesn't this work?

2017-11-16 Thread Matt Schepers
I would like to filter out two configure flags from EXTRA_OECONF in a .bbappend. When I filter out only one everything works, when I do the same thing twice it doesn't. Here is the .bbappend that works: EXTRA_OECONF := "${@oe_filter_out('--with-term=rxvt', '${EXTRA_OECONF}', d)}" EXTRA_OE