Re: [yocto] OpenCV with python3

2018-03-15 Thread Tim Orling
Ditto for Robert’s comment. Please look at the bitbake manual and understand what the syntax means [1]. Also, “python-foo” means the python2 version. The default PACKAGECONFIG [2] for opencv builds for python3. You need “python3-opencv”. Finally, I would encourage you to use

Re: [yocto] How to get mysqy/mariadb to start on powerup.

2018-03-15 Thread Greg Wilson-Lindberg
> From: Khem Raj > Sent: Thursday, March 15, 2018 1:54 PM > To: Greg Wilson-Lindberg > Cc: yocto@yoctoproject.org > Subject: Re: [yocto] How to get mysqy/mariadb to start on powerup. > > > On Thu, Mar 15, 2018 at 1:38 PM, Greg Wilson-Lindberg > wrote: >

Re: [yocto] How to get mysqy/mariadb to start on powerup.

2018-03-15 Thread Khem Raj
On Thu, Mar 15, 2018 at 1:38 PM, Greg Wilson-Lindberg wrote: > I'm building an RPi3 system that is going to use mysql/mariadb. I've got > everything installed, but mysqld is not starting. install_db.service does > run on startup, but the mysqld.service file never gets

Re: [yocto] scipy recipe

2018-03-15 Thread Peter Balazovic
is somehow to be fixed and available (recipe)? Sent from Mailspring (https://link.getmailspring.com/link/1521146506.local-368bb114-f6c3-v1.1.5-5834c...@getmailspring.com/0?redirect=https%3A%2F%2Fgetmailspring.com%2F=eW9jdG9AeW9jdG9wcm9qZWN0Lm9yZw%3D%3D), the best free email app for work On Mar

[yocto] How to get mysqy/mariadb to start on powerup.

2018-03-15 Thread Greg Wilson-Lindberg
I'm building an RPi3 system that is going to use mysql/mariadb. I've got everything installed, but mysqld is not starting. install_db.service does run on startup, but the mysqld.service file never gets triggered. Is there something that I'm missing to get it to run? I've search online, but

Re: [yocto] scipy recipe

2018-03-15 Thread Randy MacLeod
On 2018-03-15 01:56 PM, Peter Balazovic wrote: Hello all, I wonder if there is scipy recipe available? Not yet: https://layers.openembedded.org/layerindex/branch/master/recipes/?q=scipy It appears to be blocked by: https://github.com/scipy/scipy/issues/8226 but apparently that's a

[yocto] package manager contamination in state?

2018-03-15 Thread Peter A. Bigot
While attempting to diagnose a package index problem visible on current poky head I changed local.conf from: PACKAGE_CLASSES ?= "package_rpm" to PACKAGE_CLASSES ?= "package_deb" then removed tmp and buildhistory.  Rebuilding the image produced: ERROR: pabigot-image-cmdline-sdk-1.0-r0

[yocto] clarify instructions for package feed installation

2018-03-15 Thread Peter A. Bigot
Following the instructions in the 2.4.2 mega-manual section 4.21.4 I set in local.conf:     PACKAGE_FEED_URIS = "http://192.168.65.22/oe/rpi3-sumo;     PACKAGE_FEED_BASE_PATHS = "rpm"     PACKAGE_FEED_ARCHS = "noarch cortexa7hf_neon_vfpv4 raspberrypi3" and run this command:     bitbake

[yocto] scipy recipe

2018-03-15 Thread Peter Balazovic
Hello all, I wonder if there is scipy recipe available? Thanks. -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Does PACKAGECONFIG only apply to autotools recipes

2018-03-15 Thread Martin Jansa
It's applied in PACKAGECONFIG_CONFARGS variable and various bbclasses (and also various recipes) use this variable where needed, see git grep: meta/classes/base.bbclass:appendVar('PACKAGECONFIG_CONFARGS', extraconf) meta/classes/autotools.bbclass:EXTRA_OECONF_append = "

[yocto] Does PACKAGECONFIG only apply to autotools recipes

2018-03-15 Thread Alan Martinovic
Hi, is it true that that PACKAGECONFIG is only used for recipes that inherit autoconf? Was trying to understand what they do in a recipe: https://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-connectivity/bluez5/bluez5.inc and didn't really get what this was about until found the

Re: [yocto] trouble getting systemd oneshot to run

2018-03-15 Thread Greg Wilson-Lindberg
Well, first, thanks to all for the help. The recommendation for systemctl is what finally led me to my mistake. I was blindly figuring that systemd would figure out that my file named can_start.sh was a shell script, without putting #!/bin/sh at the beginning of it. dumb. At any rate, I've

Re: [yocto] [PATCH] ref-manual: Document the task feature of BUILDHISTORY_FEATURES

2018-03-15 Thread Peter Kjellerstedt
Ping? //Peter > -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto- > boun...@yoctoproject.org] On Behalf Of Peter Kjellerstedt > Sent: den 29 januari 2018 19:58 > To: yocto@yoctoproject.org; Scott Rifenbark > Subject: [yocto] [PATCH]

[yocto] Can SRC_URI look in the same place for two different machines?

2018-03-15 Thread Giordon Stark
Hi, So for my device trees, I'm finding some files are duplicated. In particular some of my dtsi files are going to be the same amongst a few boards we're using, so I would like to have each machine name distinct so that FILESEXTRAPATHS_prepend := "${THISDIR}/files:"

Re: [yocto] trouble getting systemd oneshot to run

2018-03-15 Thread Jeremy Thien
Agreed. I would expect the service file to be in /lib/systemd/system/canstart.service and a symbolic link in /etc/systemd/system/network.target.wants/canstart.service. If those are both present, then the problem is in the service file. If the symbolic link is missing, try "systemctl enable

[yocto] Kernel module depedency (header+symbols)

2018-03-15 Thread Guy Morand
Hallo Yocto developpers, I have been struggling a little to write recipe with kernel modules depedency. It seems that this is not well documented and picked up some solution across the mailing list and by reading the source. That is why I'm wondering if my approach is correct or hopefully

Re: [yocto] OpenCV with python3

2018-03-15 Thread Robert P. J. Day
On Thu, 15 Mar 2018, Peter Balazovic wrote: > Hello all, > I have python module of OpenCV for python 2.7 on my Yocto image adding via > local.conf > > IMAGE_INSTALL_append += “ python-opencv” i know i've harped on this before, but can people please stop combining the constructs "_append" and

[yocto] OpenCV with python3

2018-03-15 Thread Peter Balazovic
Hello all, I have python module of OpenCV for python 2.7 on my Yocto image adding via local.conf IMAGE_INSTALL_append += “ python-opencv” Can you advice how to add opencv binding for python 3? Thanks. -- ___ yocto mailing list yocto@yoctoproject.org

Re: [yocto] Kickstart file to customize rootfs mount opts not modifying fstab as expected

2018-03-15 Thread Iván Castell
After some googling I fixed my issue customizing mkefidisk.wks script, adding "rootflags=data=journal" to the line related with the bootloader: bootloader --ptable gpt --timeout=5 --append="rootfstype=ext4 console=ttyS0,115200 console=tty0 rootflags=data=journal noapic" Now my rootfs is

Re: [yocto] [meta-java][PATCH 1/2] openjdk-8: fix MAKE detection patch

2018-03-15 Thread Maxin B. John
Hi Andre', On Thu, Mar 15, 2018 at 09:10:05AM +, André Draszik wrote: > On Tue, 2018-03-13 at 18:10 +0200, Maxin B. John wrote: > > Hi André, > > > > Merged, Thanks. > > Thanks Maxin. > > Did you forget the 2nd patch, or is there an issue with it? > > BTW, I just noticed that master

Re: [yocto] [meta-java][PATCH 1/2] openjdk-8: fix MAKE detection patch

2018-03-15 Thread Maxin B. John
Hi André, On Thu, Mar 15, 2018 at 09:10:05AM +, André Draszik wrote: > On Tue, 2018-03-13 at 18:10 +0200, Maxin B. John wrote: > > Hi André, > > > > On Mon, Mar 12, 2018 at 04:38:05PM +, André Draszik wrote: > > > From: André Draszik > > > > > > The patch had a

Re: [yocto] [meta-java][PATCH 1/2] openjdk-8: fix MAKE detection patch

2018-03-15 Thread André Draszik
On Tue, 2018-03-13 at 18:10 +0200, Maxin B. John wrote: > Hi André, > > On Mon, Mar 12, 2018 at 04:38:05PM +, André Draszik wrote: > > From: André Draszik > > > > The patch had a few typos, leading to errors during ./configure > >