[oe] [meta-networking][PATCH] mbedtls: separate general .inc and version-specific recipe

2016-09-23 Thread Roman Alyautdin
The patch proposes to separate general part of mbedtls recipe into .inc and introduces mbedtls_1.3.10.bb that requires mbedtls.inc. This will help to add another versions without duplication of general stuff Signed-off-by: Roman Alyautdin ---

[oe] [meta-networking][PATCH] mbedtls: separate general .inc and version-specific recipe

2016-09-23 Thread Roman Alyautdin
The patch proposes to separate general part of mbedtls recipe into .inc and introduces mbedtls_1.3.10.bb that requires mbedtls.inc. This will help to add another versions without duplication of general stuff Signed-off-by: Roman Alyautdin ---

[oe] [meta-networking][PATCH] mbedtls: separate general .inc and version-specific recipe

2016-09-23 Thread Roman Alyautdin
The patch proposes to separate general part of mbedtls recipe into .inc and introduces mbedtls_1.3.10.bb that requires mbedtls.inc. This will help to add another versions without duplication of general stuff Signed-off-by: Roman Alyautdin ---

Re: [oe] [meta-oe] [PATCH] rsyslog: fix building with musl libc

2016-09-23 Thread Khem Raj
On Fri, Sep 23, 2016 at 8:58 AM, wrote: > From: Ming Liu > > - struct timeval is defined in sys/time.h with a musl libc. > - include fcntl.h without the conditional checking. > > Signed-off-by: Ming Liu

Re: [oe] [meta-networking][PATCH] phytool: Add recipe

2016-09-23 Thread Khem Raj
On Fri, Sep 23, 2016 at 5:33 AM, Mike Looijmans wrote: > A nice tool to directly read, write and interpret ethernet PHY data. > Very useful when debugging PHY or MDIO problems, which ethtool does > not do. > > Signed-off-by: Mike Looijmans > ---

[oe] [meta-oe] [PATCH] rsyslog: fix building with musl libc

2016-09-23 Thread liu . ming50
From: Ming Liu - struct timeval is defined in sys/time.h with a musl libc. - include fcntl.h without the conditional checking. Signed-off-by: Ming Liu --- .../rsyslog/rsyslog/fix_build_with_musl.patch | 62

[oe] [meta-networking][PATCH] phytool: Add recipe

2016-09-23 Thread Mike Looijmans
A nice tool to directly read, write and interpret ethernet PHY data. Very useful when debugging PHY or MDIO problems, which ethtool does not do. Signed-off-by: Mike Looijmans --- meta-networking/recipes-support/phytool/phytool.bb | 14 ++ 1 file changed, 14

[oe] [meta-gnome][PATCH] gthumb, libgnomekbd, gnome-desktop: add dependency on intltool-native

2016-09-23 Thread Martin Jansa
* fixes: WARNING: gnome-desktop-2.32.1-r6 do_configure: Missing DEPENDS on intltool-native WARNING: libgnomekbd-2.32.0-r0 do_configure: Missing DEPENDS on intltool-native WARNING: gthumb-2.12.4-r4 do_configure: Missing DEPENDS on intltool-native Signed-off-by: Martin Jansa

[oe] [meta-oe][PATCH v2 2/3] mariadb: add libdbd-mysql-perl to RDEPENDS

2016-09-23 Thread mingli.yu
From: Mingli Yu * Add libdbd-mysql-perl to RDEPENDS as mysql_setpermission depends on DBD::mysql module root@test:~# mysql_setpermission -h Option h is ambiguous (help, host) Password for user to connect to MySQL: install_driver(mysql) failed: Can't locate

[oe] [meta-oe][PATCH v2 0/3] mariadb: add libdbi-perl to RDEPENDS

2016-09-23 Thread mingli.yu
Changed in v2: * Move libdbi-perl from meta-perl to meta-oe * Add another dependency libdbd-mysql-perl * Add new recipe libdbd-mysql-perl * Add libmysqlclient to PROVIDES for mariadb as libdbd-mysql-perl depends on libmysqlclient -- ___

[oe] [meta-oe][PATCH v2 3/3] libdbd-mysql-perl: add new recipe

2016-09-23 Thread mingli.yu
From: Mingli Yu * Add new recipe libdbd-mysql-perl as mariadb-server rdepends on it Signed-off-by: Mingli Yu --- .../perl/libdbd-mysql-perl_4.036.bb| 25 ++ 1 file changed, 25 insertions(+) create mode

[oe] [meta-oe][PATCH v2 1/3] mariadb: add libdbi-perl to RDEPENDS

2016-09-23 Thread mingli.yu
From: Zhixiong Chi The commands(mysql_convert_table_format and mysql_setpermission) need the supported API provided by the libdbi-perl package. So add the libdbi-perl to the variable RDEPENDS of mariabdb-server. Move libdbi-perl from meta-perl to meta-oe

[oe] [meta-networking][PATCH 1/2] squid: specify sysconfdir and logdir

2016-09-23 Thread Yi Zhao
The default sysconfdir is /etc and logdir is /var/logs. Set sysconfdir and logdir when configure, replace them with /etc/squid and /var/log/squid. Signed-off-by: Yi Zhao --- .../squid-don-t-do-squid-conf-tests-at-build-time.patch | 6 +++---

[oe] [meta-networking][PATCH 2/2] squid: fix ptest failure

2016-09-23 Thread Yi Zhao
Fix error when run ptest on target: cp: cannot stat '/usr/bin/true': No such file or directory make: *** [Makefile:1120: squid-conf-tests] Error 1 The correct path should be /bin/true on target. Signed-off-by: Yi Zhao ---

[oe] [meta-networking][PATCH 0/2] squid: two fixes

2016-09-23 Thread Yi Zhao
The following changes since commit 24e387aaf78bc0f68a46abb1fab3a76364804bd1: openldap: fix CVE-2015-3276 (2016-09-19 16:24:10 +0200) are available in the git repository at: git://git.openembedded.org/meta-openembedded-contrib yzhao/squid-fixes