All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 1/1] babeld: new package
@ 2016-06-08  3:16 Christian Stewart
  2016-07-03 19:29 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Stewart @ 2016-06-08  3:16 UTC (permalink / raw)
  To: buildroot

Babel is a loop-avoiding distance-vector routing protocol for IPv6 and
IPv4 with fast convergence properties. It is based on the ideas in DSDV,
AODV and Cisco's EIGRP, but is designed to work well not only in wired
networks but also in wireless mesh networks, and has been extended with
support for overlay networks.

https://www.irif.univ-paris-diderot.fr/~jch/software/babel/

Signed-off-by: Christian Stewart <christian@paral.in>

---

Changes for v2:
 - fix MAKE to actually cross-compile to target
 - use commit message as the help message
 - added note about verifying signature

Changes for v3:
 - use TARGET_CC, not HOST_CC, d'oh
 - extensive runtime testing on ARM
 - as-is is MIT

---
 package/Config.in         |  1 +
 package/babeld/Config.in  | 10 ++++++++++
 package/babeld/babel.hash |  3 +++
 package/babeld/babel.mk   | 21 +++++++++++++++++++++
 4 files changed, 35 insertions(+)
 create mode 100644 package/babeld/Config.in
 create mode 100644 package/babeld/babel.hash
 create mode 100644 package/babeld/babel.mk

diff --git a/package/Config.in b/package/Config.in
index 46d7977..4137828 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1114,6 +1114,7 @@ endmenu
 
 menu "Networking"
 	source "package/agentpp/Config.in"
+	source "package/babeld/Config.in"
 	source "package/batman-adv/Config.in"
 	source "package/c-ares/Config.in"
 	source "package/canfestival/Config.in"
diff --git a/package/babeld/Config.in b/package/babeld/Config.in
new file mode 100644
index 0000000..9dae654
--- /dev/null
+++ b/package/babeld/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_BABELD
+	bool "babeld"
+	help
+	  Babel is a loop-avoiding distance-vector routing protocol for IPv6 and
+	  IPv4 with fast convergence properties. It is based on the ideas in DSDV,
+	  AODV and Cisco's EIGRP, but is designed to work well not only in wired
+	  networks but also in wireless mesh networks, and has been extended with
+	  support for overlay networks.
+
+	  https://www.irif.univ-paris-diderot.fr/~jch/software/babel/
diff --git a/package/babeld/babel.hash b/package/babeld/babel.hash
new file mode 100644
index 0000000..92a65ac
--- /dev/null
+++ b/package/babeld/babel.hash
@@ -0,0 +1,3 @@
+# Verified against:
+# https://www.irif.univ-paris-diderot.fr/~jch/software/files/babeld-1.7.1.tar.gz.asc
+sha256 2c955e7d4ad971da1e860e5cedbaf1dd79903468ff6488b3f67102b2a8d087b6  babeld-1.7.1.tar.gz
diff --git a/package/babeld/babel.mk b/package/babeld/babel.mk
new file mode 100644
index 0000000..eb3d3f6
--- /dev/null
+++ b/package/babeld/babel.mk
@@ -0,0 +1,21 @@
+################################################################################
+#
+# babeld
+#
+################################################################################
+
+BABELD_VERSION = 1.7.1
+BABELD_SITE = https://www.irif.univ-paris-diderot.fr/~jch/software/files
+BABELD_SOURCE = babeld-$(BABELD_VERSION).tar.gz
+BABELD_LICENSE = MIT
+BABELD_LICENSE_FILES = LICENSE
+
+define BABELD_BUILD_CMDS
+	$(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)"
+endef
+
+define BABELD_INSTALL_TARGET_CMDS
+	$(INSTALL) -D -m 755 $(@D)/babeld $(TARGET_DIR)/usr/bin/babeld
+endef
+
+$(eval $(generic-package))
-- 
2.7.3

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

* [Buildroot] [PATCH v3 1/1] babeld: new package
  2016-06-08  3:16 [Buildroot] [PATCH v3 1/1] babeld: new package Christian Stewart
@ 2016-07-03 19:29 ` Thomas Petazzoni
  2016-07-03 22:09   ` Maxime Hadjinlian
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2016-07-03 19:29 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue,  7 Jun 2016 20:16:30 -0700, Christian Stewart wrote:
> Babel is a loop-avoiding distance-vector routing protocol for IPv6 and
> IPv4 with fast convergence properties. It is based on the ideas in DSDV,
> AODV and Cisco's EIGRP, but is designed to work well not only in wired
> networks but also in wireless mesh networks, and has been extended with
> support for overlay networks.
> 
> https://www.irif.univ-paris-diderot.fr/~jch/software/babel/
> 
> Signed-off-by: Christian Stewart <christian@paral.in>

Thanks for this new version, but I forgot about it, and Maxime
Hadjinlian separately sent the same package, with almost exactly the
same contents. I have merged Maxime's patch, sorry about that.

But the most important is that babeld is now in Buildroot :)

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v3 1/1] babeld: new package
  2016-07-03 19:29 ` Thomas Petazzoni
@ 2016-07-03 22:09   ` Maxime Hadjinlian
  0 siblings, 0 replies; 3+ messages in thread
From: Maxime Hadjinlian @ 2016-07-03 22:09 UTC (permalink / raw)
  To: buildroot

Hi Christian, all,

Sorry about that, I did not see your patch either and sent the patches
that I had in my work tree :/.

On Sun, Jul 3, 2016 at 9:29 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Hello,
>
> On Tue,  7 Jun 2016 20:16:30 -0700, Christian Stewart wrote:
>> Babel is a loop-avoiding distance-vector routing protocol for IPv6 and
>> IPv4 with fast convergence properties. It is based on the ideas in DSDV,
>> AODV and Cisco's EIGRP, but is designed to work well not only in wired
>> networks but also in wireless mesh networks, and has been extended with
>> support for overlay networks.
>>
>> https://www.irif.univ-paris-diderot.fr/~jch/software/babel/
>>
>> Signed-off-by: Christian Stewart <christian@paral.in>
>
> Thanks for this new version, but I forgot about it, and Maxime
> Hadjinlian separately sent the same package, with almost exactly the
> same contents. I have merged Maxime's patch, sorry about that.
>
> But the most important is that babeld is now in Buildroot :)
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux, Kernel and Android engineering
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2016-07-03 22:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-08  3:16 [Buildroot] [PATCH v3 1/1] babeld: new package Christian Stewart
2016-07-03 19:29 ` Thomas Petazzoni
2016-07-03 22:09   ` Maxime Hadjinlian

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.