mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCHv2 1/4] unstrung: initial commit
@ 2016-04-27 15:54 Alexander Aring
  2016-04-27 15:54 ` [ptxdist] [PATCH 2/4] wpan-tools: version bump 0.5 -> 0.6 Alexander Aring
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Alexander Aring @ 2016-04-27 15:54 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Aring, Michael Richardson

Cc: Michael Richardson <mcr@sandelman.ca>
Signed-off-by: Alexander Aring <aar@pengutronix.de>
---
changes since v2:
 - remove unnecessary patches and add implementation fixes only.
 - move select LIBPCAP and LIBUSB to main config entry
 - fix LICENSE to GPL-2.0+, I saw some implementation file header
   which says "GPL 2 or later...".

 .../0001-main-interface-needs-argument.patch       | 24 +++++++++
 .../0002-main-remove-double-dagid-entry.patch      | 21 ++++++++
 patches/unstrung-1.11.0/series                     |  5 ++
 rules/unstrung.in                                  | 26 +++++++++
 rules/unstrung.make                                | 63 ++++++++++++++++++++++
 5 files changed, 139 insertions(+)
 create mode 100644 patches/unstrung-1.11.0/0001-main-interface-needs-argument.patch
 create mode 100644 patches/unstrung-1.11.0/0002-main-remove-double-dagid-entry.patch
 create mode 100644 patches/unstrung-1.11.0/series
 create mode 100644 rules/unstrung.in
 create mode 100644 rules/unstrung.make

diff --git a/patches/unstrung-1.11.0/0001-main-interface-needs-argument.patch b/patches/unstrung-1.11.0/0001-main-interface-needs-argument.patch
new file mode 100644
index 0000000..33022ea
--- /dev/null
+++ b/patches/unstrung-1.11.0/0001-main-interface-needs-argument.patch
@@ -0,0 +1,24 @@
+From: Alexander Aring <aar@pengutronix.de>
+Date: Tue, 26 Apr 2016 11:25:24 +0200
+Subject: [PATCH] main: interface needs argument
+
+The interface argument needs an argument otherwise optarg is NULL.
+
+Signed-off-by: Alexander Aring <aar@pengutronix.de>
+---
+ programs/sunshine/main.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/programs/sunshine/main.cpp b/programs/sunshine/main.cpp
+index 2128eb616fac..b005ccf42fd9 100644
+--- a/programs/sunshine/main.cpp
++++ b/programs/sunshine/main.cpp
+@@ -34,7 +34,7 @@ char *progname;
+ static struct option const longopts[] =
+ {
+     { "help",      0, 0, '?'},
+-    { "interface", 0, 0, 'i'},
++    { "interface", 1, 0, 'i'},
+     { "daemon",    0, 0, 'D'},
+     { "prefix",    1, NULL, 'p'},
+     { "ignore-pio",0, NULL, 'P'},
diff --git a/patches/unstrung-1.11.0/0002-main-remove-double-dagid-entry.patch b/patches/unstrung-1.11.0/0002-main-remove-double-dagid-entry.patch
new file mode 100644
index 0000000..802b7ea
--- /dev/null
+++ b/patches/unstrung-1.11.0/0002-main-remove-double-dagid-entry.patch
@@ -0,0 +1,21 @@
+From: Alexander Aring <aar@pengutronix.de>
+Date: Tue, 26 Apr 2016 11:25:44 +0200
+Subject: [PATCH] main: remove double dagid entry
+
+Signed-off-by: Alexander Aring <aar@pengutronix.de>
+---
+ programs/sunshine/main.cpp | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/programs/sunshine/main.cpp b/programs/sunshine/main.cpp
+index b005ccf42fd9..98911c888ade 100644
+--- a/programs/sunshine/main.cpp
++++ b/programs/sunshine/main.cpp
+@@ -47,7 +47,6 @@ static struct option const longopts[] =
+     { "sleep",     1, NULL,  OPTION_SLEEP},
+     { "interval",  1, NULL, 'W'},
+     { "dagid",     1, NULL, 'G'},
+-    { "dagid",     1, NULL, 'G'},
+     { "rank",      1, NULL, 'R'},
+     { "kill",      0, 0, 'K'},
+     { "verbose",   0, 0, 'v'},
diff --git a/patches/unstrung-1.11.0/series b/patches/unstrung-1.11.0/series
new file mode 100644
index 0000000..21a45d9
--- /dev/null
+++ b/patches/unstrung-1.11.0/series
@@ -0,0 +1,5 @@
+# generated by git-ptx-patches
+#tag:base --start-number 1
+0001-main-interface-needs-argument.patch
+0002-main-remove-double-dagid-entry.patch
+# 248ced0a83ec2ee376156e1599d6779f  - git-ptx-patches magic
diff --git a/rules/unstrung.in b/rules/unstrung.in
new file mode 100644
index 0000000..61b87a9
--- /dev/null
+++ b/rules/unstrung.in
@@ -0,0 +1,26 @@
+## SECTION=networking
+
+menuconfig UNSTRUNG
+	tristate
+	prompt "unstrung                      "
+	select BOOST
+	select LIBPCAP
+	select LIBUSB
+	help
+	  Unstrung is an implementation of the IETF ROLL Working Group's RPL
+	  RFC6550 routing protocol. RPL is pronounced Ripple. RPL is an IETF
+	  protocol that provides connectivity among nodes that can not all
+	  hear each other, but rather have to form a multihop mesh-like
+	  network.
+
+if UNSTRUNG
+
+config UNSTRUNG_TESTING
+	bool
+	prompt "testing tools"
+	help
+	  If enabled testing programs peck, senddio, senddao will be builed and
+	  installed.
+
+endif
+
diff --git a/rules/unstrung.make b/rules/unstrung.make
new file mode 100644
index 0000000..85ee845
--- /dev/null
+++ b/rules/unstrung.make
@@ -0,0 +1,63 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2016 by Alexander Aring <aar@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_UNSTRUNG) += unstrung
+
+#
+# Paths and names
+#
+UNSTRUNG_VERSION	:= 1.11.0
+UNSTRUNG_MD5		:= b18fa7644f19688e75eb37475816d73a
+UNSTRUNG		:= unstrung-$(UNSTRUNG_VERSION)
+UNSTRUNG_SUFFIX		:= tar.gz
+UNSTRUNG_URL		:= http://unstrung.sandelman.ca/downloads/$(UNSTRUNG).$(UNSTRUNG_SUFFIX)
+UNSTRUNG_SOURCE		:= $(SRCDIR)/$(UNSTRUNG).$(UNSTRUNG_SUFFIX)
+UNSTRUNG_DIR		:= $(BUILDDIR)/$(UNSTRUNG)
+UNSTRUNG_LICENSE	:= GPL-2.0+
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+UNSTRUNG_CONF_TOOL	:= NO
+UNSTRUNG_COMPILE_ENV	:= \
+	$(CROSS_ENV) \
+	ARCH=$(PTXCONF_ARCH_STRING) \
+	EMBEDDED=$(call ptx/ifdef,PTXCONF_UNSTRUNG_TESTING,,1)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/unstrung.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, unstrung)
+	@$(call install_fixup, unstrung,PRIORITY,optional)
+	@$(call install_fixup, unstrung,SECTION,base)
+	@$(call install_fixup, unstrung,AUTHOR,"Alexander Aring <aar@pengutronix.de>")
+	@$(call install_fixup, unstrung,DESCRIPTION,missing)
+
+	@$(call install_copy, unstrung, 0, 0, 0755, -, /sbin/sunshine)
+
+ifdef PTXCONF_UNSTRUNG_TESTING
+	@$(call install_copy, unstrung, 0, 0, 0755, -, /sbin/peck)
+	@$(call install_copy, unstrung, 0, 0, 0755, -, /sbin/senddao)
+	@$(call install_copy, unstrung, 0, 0, 0755, -, /sbin/senddio)
+endif
+
+	@$(call install_finish, unstrung)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.8.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2016-05-17  6:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-27 15:54 [ptxdist] [PATCHv2 1/4] unstrung: initial commit Alexander Aring
2016-04-27 15:54 ` [ptxdist] [PATCH 2/4] wpan-tools: version bump 0.5 -> 0.6 Alexander Aring
2016-04-27 15:54 ` [ptxdist] [PATCH 3/4] libpcap: version bump 1.5.3 -> 1.7.4 Alexander Aring
2016-04-27 15:54 ` [ptxdist] [PATCH 4/4] wireshark: version bump 1.10.6 -> 2.0.3 Alexander Aring
2016-05-17  6:31 ` [ptxdist] [PATCHv2 1/4] unstrung: initial commit Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox