[Linuxptp-devel] [PATCH 2/2] fixed hyphen/minus signs in groff

2015-06-03 Thread zmoelnig
From: IOhannes m zmölnig in manpages, the '-' denotes a hyphen. for a proper minus, we need to write '\-' --- ptp4l.8 | 6 +++--- timemaster.8 | 16 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ptp4l.8 b/ptp4l.8 index fd00ea3..caeb805 100644 --- a/ptp4l

[Linuxptp-devel] spelling errors

2015-06-03 Thread zmoelnig
as requested on linuxptp-users, i'm resending my patches one-by-one. as i'm new to this project, i wonder whether the official workflow for getting patches into linuxptp is indeed `git send-email` or using pull-requests? (afaik, sf provides pull requests these days) gfmards IOhannes --

[Linuxptp-devel] [PATCH 1/2] fixed spelling: "MANAGEMENT"

2015-06-03 Thread zmoelnig
From: IOhannes m zmölnig rather than "MANAGMENT" --- pmc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmc.c b/pmc.c index d58e190..366c093 100644 --- a/pmc.c +++ b/pmc.c @@ -211,9 +211,9 @@ static void pmc_show(struct ptp_message *msg, FILE *fp) } tlv

[Linuxptp-devel] honor DESTDIR in install-target

2015-06-07 Thread zmoelnig
Another issue that arose while packaging linuxptp for Debian was, that the 'install' target in the makefile completely ignored the DESTDIR variable, that allows to install into a staging directory¹. I added a patch that prefixes all installation paths with $(DESTDIR). While being there, I also rep

[Linuxptp-devel] [PATCH] install into DESTDIR

2015-06-07 Thread zmoelnig
From: IOhannes m zmölnig and use 'install' throughout (rather than 'mkdir') --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index ca82f5e..0f22b16 100644 --- a/makefile +++ b/makefile @@ -69,9 +69,9 @@ version.o: .version version.sh $(fi

[Linuxptp-devel] spelling errors (again)

2015-06-08 Thread zmoelnig
this time, the patches are signed off by myself. gfmsadr IOhannes -- ___ Linuxptp-devel mailing list Linuxptp-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/li

[Linuxptp-devel] [PATCH 2/2] fixed hyphen/minus signs in groff

2015-06-08 Thread zmoelnig
From: IOhannes m zmölnig in manpages, the '-' denotes a hyphen. for a proper minus, we need to write '\-' Signed-off-by: IOhannes m zmölnig --- ptp4l.8 | 6 +++--- timemaster.8 | 16 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ptp4l.8 b/ptp4l.8 index

[Linuxptp-devel] install into DESTDIRS (again)

2015-06-08 Thread zmoelnig
this time, the patch is signed-off by myself. gfmsadr IOhannes -- ___ Linuxptp-devel mailing list Linuxptp-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listi

[Linuxptp-devel] [PATCH] install into DESTDIR

2015-06-08 Thread zmoelnig
From: IOhannes m zmölnig and use 'install' throughout (rather than 'mkdir') Signed-off-by: IOhannes m zmölnig --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index ca82f5e..0f22b16 100644 --- a/makefile +++ b/makefile @@ -69,9 +69,9 @@

[Linuxptp-devel] [PATCH 1/2] fixed spelling: "MANAGEMENT"

2015-06-08 Thread zmoelnig
From: IOhannes m zmölnig rather than "MANAGMENT" Signed-off-by: IOhannes m zmölnig --- pmc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmc.c b/pmc.c index d58e190..366c093 100644 --- a/pmc.c +++ b/pmc.c @@ -211,9 +211,9 @@ static void pmc_show(struct ptp_message *

[Linuxptp-devel] documentation for contribution

2015-06-08 Thread zmoelnig
in order to not only complain about missing documentation, i decided to jfdi :-) fgmadsr IOhannes -- ___ Linuxptp-devel mailing list Linuxptp-devel@lists.sourceforge.net https:

[Linuxptp-devel] [PATCH] Explain how to contribute patches

2015-06-08 Thread zmoelnig
From: IOhannes m zmölnig Make the workflow of contribution (creating patches, submitting, reviewing) explicit. Signed-off-by: IOhannes m zmölnig --- README.org | 34 ++ 1 file changed, 34 insertions(+) diff --git a/README.org b/README.org index 742cbf4..aaad3c5

Re: [Linuxptp-devel] [PATCH] install into DESTDIR

2015-06-08 Thread IOhannes m zmoelnig
On 2015-06-07 23:42, Richard Cochran wrote: > > Before I can apply this patch and the two others, I need to have the > patches "signed off by" yourself. [...] > Maybe you think it is a silly formality, I think it is important to > make sure that we have a basic, common understanding about the GP