All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2][RESEND 1/3] canutils: rdep on iproute2
@ 2015-12-09 17:41 Christopher Larson
  2015-12-09 17:41 ` [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps Christopher Larson
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Christopher Larson @ 2015-12-09 17:41 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

busybox ip fails to configure can interfaces, so we need iproute2 to do so.
See also http://www.armadeus.com/wiki/index.php?title=CAN_bus_Linux_driver.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta-oe/recipes-extended/socketcan/canutils_4.0.6.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-oe/recipes-extended/socketcan/canutils_4.0.6.bb b/meta-oe/recipes-extended/socketcan/canutils_4.0.6.bb
index c220ead..e1508af 100644
--- a/meta-oe/recipes-extended/socketcan/canutils_4.0.6.bb
+++ b/meta-oe/recipes-extended/socketcan/canutils_4.0.6.bb
@@ -15,3 +15,6 @@ SRC_URI = "git://git.pengutronix.de/git/tools/canutils.git;protocol=git \
 S = "${WORKDIR}/git"
 
 inherit autotools pkgconfig
+
+# Busybox ip doesn't support can interface configuration, use the real thing
+RDEPENDS_${PN} += "iproute2"
-- 
2.2.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps
  2015-12-09 17:41 [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
@ 2015-12-09 17:41 ` Christopher Larson
  2016-01-05 19:15   ` Christopher Larson
  2015-12-09 17:41 ` [PATCHv2][RESEND 3/3] gpsd: also support bluez5 Christopher Larson
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Christopher Larson @ 2015-12-09 17:41 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
index f57df5d..b1bd926 100644
--- a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
+++ b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb
@@ -5,7 +5,7 @@ SECTION = "net"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 
-DEPENDS = "libnl python"
+DEPENDS = "flex-native bison-native libnl python"
 
 PV = "0.3.1+git${SRCPV}"
 SRC_URI = "git://git.code.sf.net/p/linux-zigbee/linux-zigbee \
-- 
2.2.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCHv2][RESEND 3/3] gpsd: also support bluez5
  2015-12-09 17:41 [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
  2015-12-09 17:41 ` [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps Christopher Larson
@ 2015-12-09 17:41 ` Christopher Larson
  2015-12-09 17:42 ` [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
  2015-12-09 17:57 ` Christopher Larson
  3 siblings, 0 replies; 8+ messages in thread
From: Christopher Larson @ 2015-12-09 17:41 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

gpsd uses libbluetooth, not the dbus interface, so it can work with bluez5 as
well, as the library is compatible.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb
index dae39c2..6ae2f30 100644
--- a/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb
+++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb
@@ -34,8 +34,8 @@ SYSTEMD_OESCONS = "${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false
 export STAGING_INCDIR
 export STAGING_LIBDIR
 
-PACKAGECONFIG ??= "qt ${@base_contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)}"
-PACKAGECONFIG[bluez4] = "bluez='true',bluez='false',bluez4"
+PACKAGECONFIG ??= "qt ${@base_contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)}"
+PACKAGECONFIG[bluez] = "bluez='true',bluez='false',${BLUEZ}"
 PACKAGECONFIG[qt] = "qt='yes',qt='no',qt4-x11-free"
 EXTRA_OESCONS = " \
     sysroot=${STAGING_DIR_TARGET} \
-- 
2.2.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCHv2][RESEND 1/3] canutils: rdep on iproute2
  2015-12-09 17:41 [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
  2015-12-09 17:41 ` [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps Christopher Larson
  2015-12-09 17:41 ` [PATCHv2][RESEND 3/3] gpsd: also support bluez5 Christopher Larson
@ 2015-12-09 17:42 ` Christopher Larson
  2015-12-09 17:57 ` Christopher Larson
  3 siblings, 0 replies; 8+ messages in thread
From: Christopher Larson @ 2015-12-09 17:42 UTC (permalink / raw)
  To: Openembedded Discussion; +Cc: Christopher Larson

On Wed, Dec 9, 2015 at 10:41 AM, Christopher Larson <kergoth@gmail.com>
wrote:

> From: Christopher Larson <chris_larson@mentor.com>
>
> busybox ip fails to configure can interfaces, so we need iproute2 to do so.
> See also http://www.armadeus.com/wiki/index.php?title=CAN_bus_Linux_driver
> .
>
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
>

Note: dropped the talloc/tdb/tevent attr change from this little series,
since Jens Rehsack is working on that.
-- 
Christopher Larson
kergoth at gmail dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCHv2][RESEND 1/3] canutils: rdep on iproute2
  2015-12-09 17:41 [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
                   ` (2 preceding siblings ...)
  2015-12-09 17:42 ` [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
@ 2015-12-09 17:57 ` Christopher Larson
  3 siblings, 0 replies; 8+ messages in thread
From: Christopher Larson @ 2015-12-09 17:57 UTC (permalink / raw)
  To: Openembedded Discussion; +Cc: Christopher Larson

On Wed, Dec 9, 2015 at 10:41 AM, Christopher Larson <kergoth@gmail.com>
wrote:

> From: Christopher Larson <chris_larson@mentor.com>
>
> busybox ip fails to configure can interfaces, so we need iproute2 to do so.
> See also http://www.armadeus.com/wiki/index.php?title=CAN_bus_Linux_driver
> .
>
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
>

Note: dropped the talloc/tdb/tevent attr change from this little series,
since Jens Rehsack is working on that.
-- 
Christopher Larson
kergoth at gmail dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps
  2015-12-09 17:41 ` [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps Christopher Larson
@ 2016-01-05 19:15   ` Christopher Larson
  2016-01-05 19:54     ` Martin Jansa
  0 siblings, 1 reply; 8+ messages in thread
From: Christopher Larson @ 2016-01-05 19:15 UTC (permalink / raw)
  To: Openembedded Discussion; +Cc: Christopher Larson

On Wed, Dec 9, 2015 at 10:41 AM, Christopher Larson <kergoth@gmail.com>
wrote:

> From: Christopher Larson <chris_larson@mentor.com>
>
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
>

Looks like this hasn't been applied, any objection?
-- 
Christopher Larson
kergoth at gmail dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps
  2016-01-05 19:15   ` Christopher Larson
@ 2016-01-05 19:54     ` Martin Jansa
  2016-01-05 20:12       ` Christopher Larson
  0 siblings, 1 reply; 8+ messages in thread
From: Martin Jansa @ 2016-01-05 19:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Christopher Larson

[-- Attachment #1: Type: text/plain, Size: 539 bytes --]

On Tue, Jan 05, 2016 at 12:15:17PM -0700, Christopher Larson wrote:
> On Wed, Dec 9, 2015 at 10:41 AM, Christopher Larson <kergoth@gmail.com>
> wrote:
> 
> > From: Christopher Larson <chris_larson@mentor.com>
> >
> > Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> >
> 
> Looks like this hasn't been applied, any objection?

No objection from me, meta-networking patches are applied by Joe, that's
why I didn't move it from master-next.

Regards,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps
  2016-01-05 19:54     ` Martin Jansa
@ 2016-01-05 20:12       ` Christopher Larson
  0 siblings, 0 replies; 8+ messages in thread
From: Christopher Larson @ 2016-01-05 20:12 UTC (permalink / raw)
  To: Openembedded Discussion

On Tue, Jan 5, 2016 at 12:54 PM, Martin Jansa <martin.jansa@gmail.com>
wrote:

> On Tue, Jan 05, 2016 at 12:15:17PM -0700, Christopher Larson wrote:
> > On Wed, Dec 9, 2015 at 10:41 AM, Christopher Larson <kergoth@gmail.com>
> > wrote:
> >
> > > From: Christopher Larson <chris_larson@mentor.com>
> > >
> > > Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> > >
> >
> > Looks like this hasn't been applied, any objection?
>
> No objection from me, meta-networking patches are applied by Joe, that's
> why I didn't move it from master-next.


Ah, right. Not a problem, just wanted to check on status. Thanks.
-- 
Christopher Larson
kergoth at gmail dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-01-05 20:12 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-09 17:41 [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
2015-12-09 17:41 ` [PATCHv2][RESEND 2/3] lowpan-tools: add missing flex/bison deps Christopher Larson
2016-01-05 19:15   ` Christopher Larson
2016-01-05 19:54     ` Martin Jansa
2016-01-05 20:12       ` Christopher Larson
2015-12-09 17:41 ` [PATCHv2][RESEND 3/3] gpsd: also support bluez5 Christopher Larson
2015-12-09 17:42 ` [PATCHv2][RESEND 1/3] canutils: rdep on iproute2 Christopher Larson
2015-12-09 17:57 ` Christopher Larson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.