[ptxdist] [PATCH] memtester: version bump 4.0.8 - 4.3.0

2014-06-20 Thread Markus Niebel
From: Markus Niebel markus.nie...@tq-group.com Signed-off-by: Markus Niebel markus.nie...@tq-group.com --- rules/memtester.make |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/memtester.make b/rules/memtester.make index 8fd3dd7..e83a0b8 100644 ---

Re: [ptxdist] [PATCH v2 1/2] dtc: Seperate path and filename of dts

2014-06-20 Thread Alexander Aring
Hi, On Wed, Jun 11, 2014 at 08:29:55AM +0200, Michael Olbrich wrote: Hi, I've rewritten the patch taking these issues into account. I'll merge it after the release. On Fri, May 16, 2014 at 08:45:19AM +0200, Alexander Aring wrote: I detected a new issue with this patch. First:

Re: [ptxdist] [PATCH v4 1/4] kbd: rework and version bump 1.15.2 - 2.0.1

2014-06-20 Thread Alexander Aring
Hi, On Wed, Jun 18, 2014 at 12:44:33AM +0200, Michael Olbrich wrote: On Tue, Jun 17, 2014 at 06:13:18PM +0200, Alexander Aring wrote: This patch updated the kbd package to version 2.0.1 and add many new tools option which are available to install. Also add options to install

[ptxdist] [PATCH v3 3/3] collectd: Initial commit

2014-06-20 Thread Markus Pargmann
Signed-off-by: Markus Pargmann m...@pengutronix.de --- generic/lib/systemd/system/collectd.service | 10 +++ rules/collectd.in | 24 +++ rules/collectd.make | 107 3 files changed, 141 insertions(+) create mode

[ptxdist] [PATCH v3 2/3] alfred: Initial commit

2014-06-20 Thread Markus Pargmann
Add A.L.F.R.E.D. daemon to ptxdist. It is used to distribute data between nodes of batman mesh networks. Signed-off-by: Markus Pargmann m...@pengutronix.de --- generic/lib/systemd/system/alfred@.service | 8 +++ generic/lib/systemd/system/batadv-vis@.service | 9 rules/alfred.in

[ptxdist] [PATCH v3 1/3] radvd: Initial commit

2014-06-20 Thread Markus Pargmann
Add radvd as package to ptxdist. Version 1.12 is used. A necessary patch for not continous time is added which is not mainline yet. Signed-off-by: Markus Pargmann m...@pengutronix.de --- generic/etc/radvd.conf | 11 + generic/lib/systemd/system/radvd.service

[ptxdist] how to escape $ in a rule ?

2014-06-20 Thread marc doz
Hello, I’m writing a recipe I’m using install_copy install_tree function in my recipe foo.make $(call install_copy, foo, 0, 0, 0755, $(FOO_DIR)/AAA/foo$1.bar, /AAA/foo$1.bar) $(call install_tree, foo, 0, 0, 0755, $(FOO_DIR)/AAA/, /AAA/) I would like to avoid the substitution of $1 because

Re: [ptxdist] how to escape $ in a rule ?

2014-06-20 Thread marc doz
Hello, no AAA/foo$1.bar give AAA/foo.bar no AAA/foo\$1.bar give AAA/foo\.bar Marc 2014-06-20 15:08 GMT+02:00 Alexander Aring alex.ar...@gmail.com: On Fri, Jun 20, 2014 at 03:05:43PM +0200, marc doz wrote: Hello, I’m writing a recipe I’m using install_copy install_tree function in