Re: [yocto] [meta-oic][PATCH 3/3] Update for IoTivity 1.1.1

2016-09-14 Thread Phil Coval
On 14/09/16 23:55, Maloor, Kishen wrote: Hi Philippe, Thanks for your contributions. I reviewed your patches and also ran a quick test build, and it all seemed to work OK. I’ve pushed the patches up to meta-oic. Here are links to the commits: http://git.yoctoproject.org/cgit/cgit.cgi/meta-oic/

[yocto] Adding ntfs3g to image and mouting ntfs partitions!?

2016-09-14 Thread Daniel.
Hi, I'm trying to compile ntfs-3g but I get "nothing provides ntfs-3g" error, the weird part is that I have that recipe: Some commands and its outputs: [geckos@csi24 build_x11]$ find ../sources/ -name "ntfs*.bb*"../sources/meta-openembedded/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/

Re: [yocto] Fetcher failure

2016-09-14 Thread Daniel.
You're welcome :) 2016-09-14 11:50 GMT-03:00 Burton, Ross : > > On 14 September 2016 at 15:48, Anicic Damir (PSI) > wrote: >> >> it turns out that something HAS changed in my system/libraries (but not >> Python itself), >> influencing python urllib2 to fail, although wget, chrome, firefox, ... >>

Re: [yocto] Fetcher failure

2016-09-14 Thread Burton, Ross
On 14 September 2016 at 15:48, Anicic Damir (PSI) wrote: > it turns out that something HAS changed in my system/libraries (but not > Python itself), > influencing python urllib2 to fail, although wget, chrome, firefox, ... > worked > > Fortunately we have another python version installed, and wit

Re: [yocto] Fetcher failure

2016-09-14 Thread Anicic Damir (PSI)
Thanx all for a help, I have tested with: python -c 'import urllib2; print urllib2.urlopen. The problem was only with https protocol, http worked. The certificate was not accepted (SSL, as used by bitbake wget.py), but with TLS it worked. it turns out that something HAS changed in my sys

[yocto] [meta-oic][PATCH 3/3] Update for IoTivity 1.1.1

2016-09-14 Thread Philippe Coval
* Inspired from Kishen Maloor's iotivity_1.1.0.bb. * Note this version of recipe is using upstream's git repo as source because it's better for upstream/downstream cooperation More details at: https://wiki.iotivity.org/yocto * Update to upstream "1.1-rel" maintenance branch - QA checks ar

[yocto] [meta-oic][PATCH 2/3] iotivity-sensorboard: Use regular LDFLAGS variable and pthread

2016-09-14 Thread Philippe Coval
Without this change and error on linkage is displayed : ld: observer.o: undefined reference to symbol 'pthread_create@@GLIBC_2.2.5' libpthread.so.0: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status Also YOCTOLDFLAGS are replaced with regular LDF

[yocto] [meta-oic][PATCH 1/3] iotivity-simple-client: Use regular LDFLAGS variable

2016-09-14 Thread Philippe Coval
This has been tested with iotivity-1.1.1 but also applies to earlier versions. Without this, QA check is failing and this message is reported: do_package_qa: QA Issue: No GNU_HASH in the elf binary: (...) iotivity-simple-client/simpleclient' [ldflags] Change-Id: Ib77c70331b1aaba193bc32bcd

Re: [yocto] Adding mysql in bitbaking meta-toolchain-qt5

2016-09-14 Thread Zhenhua Luo
The package name is mariadb instead of mysql, If you need the mysql headers, you should add libmysqlclient-dev. More details of mariadb packaging can be found in meta-openembedded/meta-oe/recipes-support/mysql/mariadb.inc. Best Regards, Zhenhua From: yocto-boun...@yoctoproject.org [mailto:yo

Re: [yocto] Fetcher failure

2016-09-14 Thread Daniel.
try: python -c 'import urllib; print urllib.urlopen("http://www.example.com";).read()' I'm running out of ideias :). I already had received "Connection reset by peer" because dupplicate IPs on network. Regards, 2016-09-14 9:58 GMT-03:00 Anicic Damir (PSI) : > Ups, typo. > > It also works > > >

Re: [yocto] Fetcher failure

2016-09-14 Thread Anicic Damir (PSI)
Ups, typo. It also works wget https://www.example.com/ --2016-09-14 14:58:03-- https://www.example.com/ Resolving www.example.com... 93.184.216.34, 2606:2800:220:1:248:1893:25c8:1946 Connecting to www.example.com|93.184.216.34|:443... connected. HTTP request sent, awaiting response... 200 OK Le

Re: [yocto] Fetcher failure

2016-09-14 Thread Burton, Ross
On 14 September 2016 at 13:42, Anicic Damir (PSI) wrote: > wget https://www.exampe.com/ > --2016-09-14 14:42:39-- https://www.exampe.com/ > Resolving www.exampe.com... 69.172.201.153 > Connecting to www.exampe.com|69.172.201.153|:443... connected. > Unable to establish SSL connection. > "exampl

Re: [yocto] Fetcher failure

2016-09-14 Thread Anicic Damir (PSI)
This works: wget http://www.exampe.com/ --2016-09-14 14:42:23-- http://www.exampe.com/ Resolving www.exampe.com... 69.172.201.153 Connecting to www.exampe.com|69.172.201.153|:80... connected. HTTP request sent, awaiting response... 200 OK Length: unspecified [text/html] Saving to: “index.html.1”

Re: [yocto] Fetcher failure

2016-09-14 Thread Daniel.
Can you connect to "www.example.com" from command line?! Something like `telnet www.example.com 80' !?!? 2016-09-14 9:27 GMT-03:00 Anicic Damir (PSI) : > Sorry, the error message is: > >DEBUG: checkstatus() urlopen failed: Connection reset by peer> > > > -- > _

Re: [yocto] Fetcher failure

2016-09-14 Thread Anicic Damir (PSI)
Sorry, the error message is: DEBUG: checkstatus() urlopen failed: -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Fetcher failure

2016-09-14 Thread Anicic Damir (PSI)
No, I have direct internet connection, no proxy needed (and was not needed before). Temporarily I use CONNECTIVITY_CHECK_URIS="" in local.conf That way it works again, but I would like to have better solution. After investigating little bit more, I see an error: Fetcher failure for URL: '

Re: [yocto] Fetcher failure

2016-09-14 Thread Burton, Ross
On 14 September 2016 at 08:52, Anicic Damir (PSI) wrote: > Fetcher failure for URL: 'https://www.example.com/'. URL > https://www.example.com/ doesn't work. Please ensure your network is > configured correctly. > This is the "is networking correctly configured" test, and if it fails in Yocto

[yocto] [meta-raspberrypi] Schizophrenic build

2016-09-14 Thread Gary Thomas
I just built for my shiny new RaspberryPi-3 and noticed this: $ ls -l tmp/work total 32 drwxrwxr-x 13 gthomas gthomas 4096 Sep 13 05:40 all-amltd-linux drwxrwxr-x 3 gthomas gthomas 4096 Sep 13 05:36 all-amltd-linux-gnueabi drwxrwxr-x 271 gthomas gthomas 12288 Sep 13 09:20 cortexa7h

[yocto] Adding mysql in bitbaking meta-toolchain-qt5

2016-09-14 Thread Ambika
Hello, I’m doing bitbake of meta-toolchain-qt5. When trying to use mysql, not able to find it in include/ directory. mysql sources is located in the below path in my yocto setup, sources/meta-openembedded/meta-oe/recipes-support/mysql Tried to include mysql by adding the below to conf/local.

[yocto] Adding mysql in bitbaking meta-toolchain-qt5

2016-09-14 Thread ambika
Hello, I'm doing bitbake of meta-toolchain-qt5. When trying to use mysql, not able to find it in include/ directory. mysql sources is located in the below path in my yocto setup, sources/meta-openembedded/meta-oe/recipes-support/mysql Tried to include mysql by adding the below to conf/lo

[yocto] Fetcher failure

2016-09-14 Thread Anicic Damir (PSI)
Hi, Yocto 2.1: I had working setup, and wanted to rebuild. I am quite sure that I did not change anything, and suddenly it does not work any more: Fetcher failure for URL: 'https://www.example.com/'. URL https://www.example.com/ doesn't work. Please ensure your network is configured corre