mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 0/3] dropwatch: Post upgrade tweaks
@ 2020-07-02  7:35 Alexander Dahl
  2020-07-02  7:35 ` [ptxdist] [PATCH 1/3] dropwatch: Update license information Alexander Dahl
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Alexander Dahl @ 2020-07-02  7:35 UTC (permalink / raw)
  To: ptxdist

Hei hei,

I already had the version bump on my todo stack, but Michael was faster
with c03e3ff8f8f9 ("dropwatch: version bump 2015-07-06-g7c33d8a ->
1.5.3").  However I still had some leftovers and split them up now and
send this as a follow up series to the mentioned commit.

Greets
Alex

Alexander Dahl (3):
  dropwatch: Update license information
  dropwatch: Update help text
  dropwatch: Add upstream patches

 ...ssue-when-compiling-with-Wcast-align.patch | 47 +++++++++++++++++++
 .../0002-Fix-configure-for-libnl3-genl.patch  | 43 +++++++++++++++++
 patches/dropwatch-1.5.3/series                |  5 ++
 rules/dropwatch.in                            |  4 +-
 rules/dropwatch.make                          |  3 +-
 5 files changed, 99 insertions(+), 3 deletions(-)
 create mode 100644 patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
 create mode 100644 patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch
 create mode 100644 patches/dropwatch-1.5.3/series

-- 
2.26.2


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 1/3] dropwatch: Update license information
  2020-07-02  7:35 [ptxdist] [PATCH 0/3] dropwatch: Post upgrade tweaks Alexander Dahl
@ 2020-07-02  7:35 ` Alexander Dahl
  2020-07-06  6:31   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-02  7:35 ` [ptxdist] [PATCH 2/3] dropwatch: Update help text Alexander Dahl
  2020-07-02  7:35 ` [ptxdist] [PATCH 3/3] dropwatch: Add upstream patches Alexander Dahl
  2 siblings, 1 reply; 7+ messages in thread
From: Alexander Dahl @ 2020-07-02  7:35 UTC (permalink / raw)
  To: ptxdist

There are SPDX license identifiers in the upstream source now.

Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/dropwatch.make | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rules/dropwatch.make b/rules/dropwatch.make
index 6f6ccbeed..479437f77 100644
--- a/rules/dropwatch.make
+++ b/rules/dropwatch.make
@@ -21,7 +21,8 @@ DROPWATCH_SUFFIX	:= tar.gz
 DROPWATCH_URL		:= https://github.com/nhorman/dropwatch/archive/v$(DROPWATCH_VERSION).${DROPWATCH_SUFFIX}
 DROPWATCH_SOURCE	:= $(SRCDIR)/$(DROPWATCH).$(DROPWATCH_SUFFIX)
 DROPWATCH_DIR		:= $(BUILDDIR)/$(DROPWATCH)
-DROPWATCH_LICENSE	:= GPL-2.0-only
+DROPWATCH_LICENSE	:= GPL-2.0-or-later
+DROPWATCH_LICENSE_FILES	:= file://COPYING;md5=eb723b61539feef013de476e68b5c50a
 
 # ----------------------------------------------------------------------------
 # Prepare
-- 
2.26.2


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 2/3] dropwatch: Update help text
  2020-07-02  7:35 [ptxdist] [PATCH 0/3] dropwatch: Post upgrade tweaks Alexander Dahl
  2020-07-02  7:35 ` [ptxdist] [PATCH 1/3] dropwatch: Update license information Alexander Dahl
@ 2020-07-02  7:35 ` Alexander Dahl
  2020-07-06  6:31   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-02  7:35 ` [ptxdist] [PATCH 3/3] dropwatch: Add upstream patches Alexander Dahl
  2 siblings, 1 reply; 7+ messages in thread
From: Alexander Dahl @ 2020-07-02  7:35 UTC (permalink / raw)
  To: ptxdist

The project URL has changed, and we can make the line above a little
nicer.

Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/dropwatch.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/dropwatch.in b/rules/dropwatch.in
index b27dcdb44..1fae3e73c 100644
--- a/rules/dropwatch.in
+++ b/rules/dropwatch.in
@@ -8,8 +8,8 @@ config DROPWATCH
 	select LIBPCAP
 	select READLINE
 	help
-	  user space utility for use with dropwatch kernel protocol
+	  User space utility for use with dropwatch kernel protocol.
 	  
-	  http://git.infradead.org/users/nhorman/dropwatch.git
+	  https://github.com/nhorman/dropwatch
 
 # vim: ft=kconfig noet tw=72
-- 
2.26.2


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 3/3] dropwatch: Add upstream patches
  2020-07-02  7:35 [ptxdist] [PATCH 0/3] dropwatch: Post upgrade tweaks Alexander Dahl
  2020-07-02  7:35 ` [ptxdist] [PATCH 1/3] dropwatch: Update license information Alexander Dahl
  2020-07-02  7:35 ` [ptxdist] [PATCH 2/3] dropwatch: Update help text Alexander Dahl
@ 2020-07-02  7:35 ` Alexander Dahl
  2020-07-06  6:31   ` [ptxdist] [APPLIED] " Michael Olbrich
  2 siblings, 1 reply; 7+ messages in thread
From: Alexander Dahl @ 2020-07-02  7:35 UTC (permalink / raw)
  To: ptxdist

There are two commits upstream since the v1.5.3 release which both fix
build errors in certain environments.

Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 ...ssue-when-compiling-with-Wcast-align.patch | 47 +++++++++++++++++++
 .../0002-Fix-configure-for-libnl3-genl.patch  | 43 +++++++++++++++++
 patches/dropwatch-1.5.3/series                |  5 ++
 3 files changed, 95 insertions(+)
 create mode 100644 patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
 create mode 100644 patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch
 create mode 100644 patches/dropwatch-1.5.3/series

diff --git a/patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch b/patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
new file mode 100644
index 000000000..d63d0b18a
--- /dev/null
+++ b/patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
@@ -0,0 +1,47 @@
+From: Neil Horman <nhorman@tuxdriver.com>
+Date: Sat, 21 Mar 2020 07:22:29 -0400
+Subject: [PATCH] Fix build issue when compiling with -Wcast-align
+
+Passing a char buffer cast to struct nlmsghdr * violates the rules of
+-Wcast-align on some arches, as described in :
+https://github.com/nhorman/dropwatch/issues/26
+
+Fix it by declaring the buffer as a struct nlmsghdr, and casting to a
+less alligned type
+
+Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
+---
+ src/main.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/src/main.c b/src/main.c
+index bd87085d7dc8..2253fc4eb8c1 100644
+--- a/src/main.c
++++ b/src/main.c
+@@ -267,7 +267,7 @@ int send_netlink_message(struct netlink_message *msg)
+ 
+ struct netlink_message *recv_netlink_message(int *err)
+ {
+-	static unsigned char *buf;
++	static struct nlmsghdr *buf;
+ 	struct netlink_message *msg;
+ 	struct genlmsghdr *glm;
+ 	struct sockaddr_nl nla;
+@@ -277,7 +277,7 @@ struct netlink_message *recv_netlink_message(int *err)
+ 	*err = 0;
+ 
+ 	do {
+-		rc = nl_recv(nsd, &nla, &buf, NULL);
++		rc = nl_recv(nsd, &nla, (unsigned char **)&buf, NULL);
+ 		if (rc < 0) {
+ 			switch (errno) {
+ 			case EINTR:
+@@ -294,7 +294,7 @@ struct netlink_message *recv_netlink_message(int *err)
+ 		}
+ 	} while (rc == 0);
+ 
+-	msg = wrap_netlink_msg((struct nlmsghdr *)buf);
++	msg = wrap_netlink_msg(buf);
+ 
+ 	type = ((struct nlmsghdr *)msg->msg)->nlmsg_type;
+ 
diff --git a/patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch b/patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch
new file mode 100644
index 000000000..5c39d8201
--- /dev/null
+++ b/patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch
@@ -0,0 +1,43 @@
+From: Neil Horman <nhorman@tuxdriver.com>
+Date: Wed, 20 May 2020 07:08:47 -0400
+Subject: [PATCH] Fix configure for libnl3-genl
+
+Apparently, way back when we wrote the configure script, we included a
+package check for libnl, but not libnl3-genl (ostensibly because it
+didn't exist I think), and so we hardcoded linking to -lnl3-genl.  The
+pkg-config file for that library exists now, so lets actually test for
+it during the running of configure, and use its output during make
+
+Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
+---
+ configure.ac    | 1 +
+ src/Makefile.am | 4 ++--
+ 2 files changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index ad917022eb82..278da5479152 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -14,6 +14,7 @@ AC_PROG_AWK
+ AC_CHECK_FUNCS(getopt_long)
+ 
+ PKG_CHECK_MODULES([LIBNL3], [libnl-3.0], [], [AC_MSG_ERROR([libnl-3.0 is required])])
++PKG_CHECK_MODULES([LIBNLG3], [libnl-genl-3.0], [], [AC_MSG_ERROR([libnl-genl-3.0 is required])])
+ # Fallback on using -lreadline as readline.pc is only available since version 8.0
+ PKG_CHECK_MODULES([READLINE], [readline], [], [READLINE_LIBS=-lreadline])
+ PKG_CHECK_MODULES([LIBPCAP], [libpcap], [], [
+diff --git a/src/Makefile.am b/src/Makefile.am
+index a324fd36eb9e..f56a39dcf274 100644
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -1,8 +1,8 @@
+ 
+ bin_PROGRAMS = dropwatch dwdump
+ 
+-AM_CFLAGS = -g -Wall -Werror $(LIBNL3_CFLAGS) $(READLINE_CFLAGS)
+-AM_LDFLAGS = $(LIBNL3_LIBS) -lnl-genl-3 $(READLINE_LIBS) -lpcap
++AM_CFLAGS = -g -Wall -Werror $(LIBNL3_CFLAGS) $(LIBNLG3_CFLAGS) $(READLINE_CFLAGS)
++AM_LDFLAGS = $(LIBNL3_LIBS) $(LIBNLG3_LIBS) $(READLINE_LIBS) -lpcap
+ AM_CPPFLAGS = -D_GNU_SOURCE
+ 
+ dropwatch_SOURCES = main.c lookup.c lookup_kas.c
diff --git a/patches/dropwatch-1.5.3/series b/patches/dropwatch-1.5.3/series
new file mode 100644
index 000000000..f3c5dd88d
--- /dev/null
+++ b/patches/dropwatch-1.5.3/series
@@ -0,0 +1,5 @@
+# generated by git-ptx-patches
+#tag:base --start-number 1
+0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
+0002-Fix-configure-for-libnl3-genl.patch
+# 68fccae5492fb3b53d1b549cfe32ed5f  - git-ptx-patches magic
-- 
2.26.2


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] dropwatch: Update license information
  2020-07-02  7:35 ` [ptxdist] [PATCH 1/3] dropwatch: Update license information Alexander Dahl
@ 2020-07-06  6:31   ` Michael Olbrich
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2020-07-06  6:31 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as 3f8529fb895b4308b61900cf6e81a253db3dde9f.

Michael

[sent from post-receive hook]

On Mon, 06 Jul 2020 08:31:58 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> There are SPDX license identifiers in the upstream source now.
> 
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20200702073540.24100-2-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/dropwatch.make b/rules/dropwatch.make
> index 6f6ccbeed4e4..479437f77808 100644
> --- a/rules/dropwatch.make
> +++ b/rules/dropwatch.make
> @@ -21,7 +21,8 @@ DROPWATCH_SUFFIX	:= tar.gz
>  DROPWATCH_URL		:= https://github.com/nhorman/dropwatch/archive/v$(DROPWATCH_VERSION).${DROPWATCH_SUFFIX}
>  DROPWATCH_SOURCE	:= $(SRCDIR)/$(DROPWATCH).$(DROPWATCH_SUFFIX)
>  DROPWATCH_DIR		:= $(BUILDDIR)/$(DROPWATCH)
> -DROPWATCH_LICENSE	:= GPL-2.0-only
> +DROPWATCH_LICENSE	:= GPL-2.0-or-later
> +DROPWATCH_LICENSE_FILES	:= file://COPYING;md5=eb723b61539feef013de476e68b5c50a
>  
>  # ----------------------------------------------------------------------------
>  # Prepare

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] dropwatch: Update help text
  2020-07-02  7:35 ` [ptxdist] [PATCH 2/3] dropwatch: Update help text Alexander Dahl
@ 2020-07-06  6:31   ` Michael Olbrich
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2020-07-06  6:31 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as 71adbb438536260414a5bd78ff170e7a5e9f79ac.

Michael

[sent from post-receive hook]

On Mon, 06 Jul 2020 08:31:59 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> The project URL has changed, and we can make the line above a little
> nicer.
> 
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20200702073540.24100-3-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/dropwatch.in b/rules/dropwatch.in
> index b27dcdb4487c..1fae3e73c1b1 100644
> --- a/rules/dropwatch.in
> +++ b/rules/dropwatch.in
> @@ -8,8 +8,8 @@ config DROPWATCH
>  	select LIBPCAP
>  	select READLINE
>  	help
> -	  user space utility for use with dropwatch kernel protocol
> +	  User space utility for use with dropwatch kernel protocol.
>  	  
> -	  http://git.infradead.org/users/nhorman/dropwatch.git
> +	  https://github.com/nhorman/dropwatch
>  
>  # vim: ft=kconfig noet tw=72

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] dropwatch: Add upstream patches
  2020-07-02  7:35 ` [ptxdist] [PATCH 3/3] dropwatch: Add upstream patches Alexander Dahl
@ 2020-07-06  6:31   ` Michael Olbrich
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2020-07-06  6:31 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as ea5a3062b785f280a6a580859c9d4217dd52d2cc.

Michael

[sent from post-receive hook]

On Mon, 06 Jul 2020 08:31:59 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> There are two commits upstream since the v1.5.3 release which both fix
> build errors in certain environments.
> 
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20200702073540.24100-4-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch b/patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
> new file mode 100644
> index 000000000000..d63d0b18a531
> --- /dev/null
> +++ b/patches/dropwatch-1.5.3/0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
> @@ -0,0 +1,47 @@
> +From: Neil Horman <nhorman@tuxdriver.com>
> +Date: Sat, 21 Mar 2020 07:22:29 -0400
> +Subject: [PATCH] Fix build issue when compiling with -Wcast-align
> +
> +Passing a char buffer cast to struct nlmsghdr * violates the rules of
> +-Wcast-align on some arches, as described in :
> +https://github.com/nhorman/dropwatch/issues/26
> +
> +Fix it by declaring the buffer as a struct nlmsghdr, and casting to a
> +less alligned type
> +
> +Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
> +---
> + src/main.c | 6 +++---
> + 1 file changed, 3 insertions(+), 3 deletions(-)
> +
> +diff --git a/src/main.c b/src/main.c
> +index bd87085d7dc8..2253fc4eb8c1 100644
> +--- a/src/main.c
> ++++ b/src/main.c
> +@@ -267,7 +267,7 @@ int send_netlink_message(struct netlink_message *msg)
> + 
> + struct netlink_message *recv_netlink_message(int *err)
> + {
> +-	static unsigned char *buf;
> ++	static struct nlmsghdr *buf;
> + 	struct netlink_message *msg;
> + 	struct genlmsghdr *glm;
> + 	struct sockaddr_nl nla;
> +@@ -277,7 +277,7 @@ struct netlink_message *recv_netlink_message(int *err)
> + 	*err = 0;
> + 
> + 	do {
> +-		rc = nl_recv(nsd, &nla, &buf, NULL);
> ++		rc = nl_recv(nsd, &nla, (unsigned char **)&buf, NULL);
> + 		if (rc < 0) {
> + 			switch (errno) {
> + 			case EINTR:
> +@@ -294,7 +294,7 @@ struct netlink_message *recv_netlink_message(int *err)
> + 		}
> + 	} while (rc == 0);
> + 
> +-	msg = wrap_netlink_msg((struct nlmsghdr *)buf);
> ++	msg = wrap_netlink_msg(buf);
> + 
> + 	type = ((struct nlmsghdr *)msg->msg)->nlmsg_type;
> + 
> diff --git a/patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch b/patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch
> new file mode 100644
> index 000000000000..5c39d820134d
> --- /dev/null
> +++ b/patches/dropwatch-1.5.3/0002-Fix-configure-for-libnl3-genl.patch
> @@ -0,0 +1,43 @@
> +From: Neil Horman <nhorman@tuxdriver.com>
> +Date: Wed, 20 May 2020 07:08:47 -0400
> +Subject: [PATCH] Fix configure for libnl3-genl
> +
> +Apparently, way back when we wrote the configure script, we included a
> +package check for libnl, but not libnl3-genl (ostensibly because it
> +didn't exist I think), and so we hardcoded linking to -lnl3-genl.  The
> +pkg-config file for that library exists now, so lets actually test for
> +it during the running of configure, and use its output during make
> +
> +Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
> +---
> + configure.ac    | 1 +
> + src/Makefile.am | 4 ++--
> + 2 files changed, 3 insertions(+), 2 deletions(-)
> +
> +diff --git a/configure.ac b/configure.ac
> +index ad917022eb82..278da5479152 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -14,6 +14,7 @@ AC_PROG_AWK
> + AC_CHECK_FUNCS(getopt_long)
> + 
> + PKG_CHECK_MODULES([LIBNL3], [libnl-3.0], [], [AC_MSG_ERROR([libnl-3.0 is required])])
> ++PKG_CHECK_MODULES([LIBNLG3], [libnl-genl-3.0], [], [AC_MSG_ERROR([libnl-genl-3.0 is required])])
> + # Fallback on using -lreadline as readline.pc is only available since version 8.0
> + PKG_CHECK_MODULES([READLINE], [readline], [], [READLINE_LIBS=-lreadline])
> + PKG_CHECK_MODULES([LIBPCAP], [libpcap], [], [
> +diff --git a/src/Makefile.am b/src/Makefile.am
> +index a324fd36eb9e..f56a39dcf274 100644
> +--- a/src/Makefile.am
> ++++ b/src/Makefile.am
> +@@ -1,8 +1,8 @@
> + 
> + bin_PROGRAMS = dropwatch dwdump
> + 
> +-AM_CFLAGS = -g -Wall -Werror $(LIBNL3_CFLAGS) $(READLINE_CFLAGS)
> +-AM_LDFLAGS = $(LIBNL3_LIBS) -lnl-genl-3 $(READLINE_LIBS) -lpcap
> ++AM_CFLAGS = -g -Wall -Werror $(LIBNL3_CFLAGS) $(LIBNLG3_CFLAGS) $(READLINE_CFLAGS)
> ++AM_LDFLAGS = $(LIBNL3_LIBS) $(LIBNLG3_LIBS) $(READLINE_LIBS) -lpcap
> + AM_CPPFLAGS = -D_GNU_SOURCE
> + 
> + dropwatch_SOURCES = main.c lookup.c lookup_kas.c
> diff --git a/patches/dropwatch-1.5.3/series b/patches/dropwatch-1.5.3/series
> new file mode 100644
> index 000000000000..f3c5dd88de16
> --- /dev/null
> +++ b/patches/dropwatch-1.5.3/series
> @@ -0,0 +1,5 @@
> +# generated by git-ptx-patches
> +#tag:base --start-number 1
> +0001-Fix-build-issue-when-compiling-with-Wcast-align.patch
> +0002-Fix-configure-for-libnl3-genl.patch
> +# 68fccae5492fb3b53d1b549cfe32ed5f  - git-ptx-patches magic

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

end of thread, other threads:[~2020-07-06  6:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-02  7:35 [ptxdist] [PATCH 0/3] dropwatch: Post upgrade tweaks Alexander Dahl
2020-07-02  7:35 ` [ptxdist] [PATCH 1/3] dropwatch: Update license information Alexander Dahl
2020-07-06  6:31   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-02  7:35 ` [ptxdist] [PATCH 2/3] dropwatch: Update help text Alexander Dahl
2020-07-06  6:31   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-02  7:35 ` [ptxdist] [PATCH 3/3] dropwatch: Add upstream patches Alexander Dahl
2020-07-06  6:31   ` [ptxdist] [APPLIED] " Michael Olbrich

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