All of lore.kernel.org
 help / color / mirror / Atom feed
* [psplash][PATCH 1/3] AUTHORS: add list of git commit authors
@ 2016-04-13 13:57 Richard Leitner
  2016-04-13 13:57 ` [psplash][PATCH 2/3] add initial .gitignore Richard Leitner
  2016-04-13 13:57 ` [psplash][PATCH 3/3] README: add "Contributing" guideline Richard Leitner
  0 siblings, 2 replies; 6+ messages in thread
From: Richard Leitner @ 2016-04-13 13:57 UTC (permalink / raw)
  To: yocto

Added an initial AUTHORS list in alphabetical order, created with
following commandline:
	git log --format='%aN <%aE>' | sort -u

Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
---
 AUTHORS | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/AUTHORS b/AUTHORS
index e69de29..953d867 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -0,0 +1,13 @@
+List of contributors (in alphabetical order):
+
+Aws Ismail <aws.ismail@windriver.com>
+Juro Bystricky <juro.bystricky@intel.com>
+Khem Raj <raj.khem@gmail.com>
+Matthew Allum <mallum@openedhand.com>
+Olaf Mandel <o.mandel@menlosystems.com>
+Richard Purdie <richard.purdie@linuxfoundation.org>
+Rob Bradford <rob@linux.intel.com>
+Robert Bragg <robert@linux.intel.com>
+Ross Burton <ross.burton@intel.com>
+Samuel Ortiz <sameo@linux.intel.com>
+Tomas Frydrych <tomas@sleepfive.com>
-- 
2.1.4



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

* [psplash][PATCH 2/3] add initial .gitignore
  2016-04-13 13:57 [psplash][PATCH 1/3] AUTHORS: add list of git commit authors Richard Leitner
@ 2016-04-13 13:57 ` Richard Leitner
  2016-04-13 13:57 ` [psplash][PATCH 3/3] README: add "Contributing" guideline Richard Leitner
  1 sibling, 0 replies; 6+ messages in thread
From: Richard Leitner @ 2016-04-13 13:57 UTC (permalink / raw)
  To: yocto

This initial version of .gitignore contains all files created during a
build.

Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
---
 .gitignore | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7cf14ed
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,20 @@
+configure
+config.h
+config.h.in
+config.log
+config.status
+config.guess
+config.sub
+depcomp
+Makefile
+Makefile.in
+install-sh
+missing
+aclocal.m4
+autom4te.cache/
+.deps/
+*.o
+
+psplash
+psplash-write
+stamp-h1
-- 
2.1.4



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

* [psplash][PATCH 3/3] README: add "Contributing" guideline
  2016-04-13 13:57 [psplash][PATCH 1/3] AUTHORS: add list of git commit authors Richard Leitner
  2016-04-13 13:57 ` [psplash][PATCH 2/3] add initial .gitignore Richard Leitner
@ 2016-04-13 13:57 ` Richard Leitner
  2016-04-13 15:47   ` Burton, Ross
  2016-04-13 19:42   ` Philip Balister
  1 sibling, 2 replies; 6+ messages in thread
From: Richard Leitner @ 2016-04-13 13:57 UTC (permalink / raw)
  To: yocto

The "Contributing" guideline section should help people sending their
patches correctly.

A similar section is available in nearly all
layers/repositories hosted on yoctoproject.org. Therefore add it also
the the psplash repository.

Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
---
 README | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/README b/README
index 86ef6ba..8779a38 100644
--- a/README
+++ b/README
@@ -8,3 +8,21 @@ rotation. Its visual look is configurable by basic source changes.
 
 Also included is a 'client' command utility for sending information to
 psplash such as boot progress information.
+
+Contributing
+============
+To contribute to this layer you should submit the patches for review to the
+mailing list (yocto@yoctoproject.org).
+
+Please refer to
+    http://openembedded.org/wiki/Commit_Patch_Message_Guidelines
+for some useful guidelines to be followed when submitting patches.
+
+Mailing list:
+    https://lists.yoctoproject.org/listinfo/yocto
+
+When creating patches, please use something like:
+    git format-patch -M -s --subject-prefix='psplash][PATCH' origin
+
+When sending patches, please use something like:
+    git send-email --to yocto@yoctoproject.org <generated patch>
-- 
2.1.4



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

* Re: [psplash][PATCH 3/3] README: add "Contributing" guideline
  2016-04-13 13:57 ` [psplash][PATCH 3/3] README: add "Contributing" guideline Richard Leitner
@ 2016-04-13 15:47   ` Burton, Ross
  2016-04-13 19:42   ` Philip Balister
  1 sibling, 0 replies; 6+ messages in thread
From: Burton, Ross @ 2016-04-13 15:47 UTC (permalink / raw)
  To: Richard Leitner; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1689 bytes --]

This series is now merged, thanks Richard.

Ross

On 13 April 2016 at 14:57, Richard Leitner <richard.leitner@skidata.com>
wrote:

> The "Contributing" guideline section should help people sending their
> patches correctly.
>
> A similar section is available in nearly all
> layers/repositories hosted on yoctoproject.org. Therefore add it also
> the the psplash repository.
>
> Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
> ---
>  README | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>
> diff --git a/README b/README
> index 86ef6ba..8779a38 100644
> --- a/README
> +++ b/README
> @@ -8,3 +8,21 @@ rotation. Its visual look is configurable by basic source
> changes.
>
>  Also included is a 'client' command utility for sending information to
>  psplash such as boot progress information.
> +
> +Contributing
> +============
> +To contribute to this layer you should submit the patches for review to
> the
> +mailing list (yocto@yoctoproject.org).
> +
> +Please refer to
> +    http://openembedded.org/wiki/Commit_Patch_Message_Guidelines
> +for some useful guidelines to be followed when submitting patches.
> +
> +Mailing list:
> +    https://lists.yoctoproject.org/listinfo/yocto
> +
> +When creating patches, please use something like:
> +    git format-patch -M -s --subject-prefix='psplash][PATCH' origin
> +
> +When sending patches, please use something like:
> +    git send-email --to yocto@yoctoproject.org <generated patch>
> --
> 2.1.4
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>

[-- Attachment #2: Type: text/html, Size: 2749 bytes --]

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

* Re: [psplash][PATCH 3/3] README: add "Contributing" guideline
  2016-04-13 13:57 ` [psplash][PATCH 3/3] README: add "Contributing" guideline Richard Leitner
  2016-04-13 15:47   ` Burton, Ross
@ 2016-04-13 19:42   ` Philip Balister
  2016-04-14  9:30     ` Richard Leitner
  1 sibling, 1 reply; 6+ messages in thread
From: Philip Balister @ 2016-04-13 19:42 UTC (permalink / raw)
  To: Richard Leitner, yocto

On 04/13/2016 09:57 AM, Richard Leitner wrote:
> The "Contributing" guideline section should help people sending their
> patches correctly.
> 
> A similar section is available in nearly all
> layers/repositories hosted on yoctoproject.org. Therefore add it also
> the the psplash repository.
> 
> Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
> ---
>  README | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
> 
> diff --git a/README b/README
> index 86ef6ba..8779a38 100644
> --- a/README
> +++ b/README
> @@ -8,3 +8,21 @@ rotation. Its visual look is configurable by basic source changes.
>  
>  Also included is a 'client' command utility for sending information to
>  psplash such as boot progress information.
> +
> +Contributing
> +============
> +To contribute to this layer you should submit the patches for review to the
> +mailing list (yocto@yoctoproject.org).
> +
> +Please refer to
> +    http://openembedded.org/wiki/Commit_Patch_Message_Guidelines
> +for some useful guidelines to be followed when submitting patches.
> +
> +Mailing list:
> +    https://lists.yoctoproject.org/listinfo/yocto
> +
> +When creating patches, please use something like:
> +    git format-patch -M -s --subject-prefix='psplash][PATCH' origin
> +
> +When sending patches, please use something like:
> +    git send-email --to yocto@yoctoproject.org <generated patch>
> 

I cut and paste this line from the meta-oe README for sending patches,
it is a bit simpler than the two step process:

https://github.com/openembedded/meta-openembedded/blob/master/meta-oe/README#L9

Philip



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

* Re: [psplash][PATCH 3/3] README: add "Contributing" guideline
  2016-04-13 19:42   ` Philip Balister
@ 2016-04-14  9:30     ` Richard Leitner
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Leitner @ 2016-04-14  9:30 UTC (permalink / raw)
  To: Philip Balister, yocto

Hi Philip,

On 04/13/2016 09:42 PM, Philip Balister wrote:
>> +
>> > +Contributing
>> > +============
>> > +To contribute to this layer you should submit the patches for review to the
>> > +mailing list (yocto@yoctoproject.org).
>> > +
>> > +Please refer to
>> > +    http://openembedded.org/wiki/Commit_Patch_Message_Guidelines
>> > +for some useful guidelines to be followed when submitting patches.
>> > +
>> > +Mailing list:
>> > +    https://lists.yoctoproject.org/listinfo/yocto
>> > +
>> > +When creating patches, please use something like:
>> > +    git format-patch -M -s --subject-prefix='psplash][PATCH' origin
>> > +
>> > +When sending patches, please use something like:
>> > +    git send-email --to yocto@yoctoproject.org <generated patch>
>> > 
> I cut and paste this line from the meta-oe README for sending patches,
> it is a bit simpler than the two step process:
> 
> https://github.com/openembedded/meta-openembedded/blob/master/meta-oe/README#L9

The line we are talking about is:
git send-email -M -1 --to openembedded-devel@lists.openembedded.org
--subject-prefix=meta-oe][PATCH
isn't it?

You're right, for one patch this line is simpler/faster. But basically I
like to create the patches first (and be able to review them) and send
them afterwards in a separate step.

Nonetheless if you like to add the "direct" send-email line I would at
least suggest to:
	a) use "origin" as rev instead of "-1"
	b) add "--annotate"

regards,
Richard


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

end of thread, other threads:[~2016-04-14  9:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-13 13:57 [psplash][PATCH 1/3] AUTHORS: add list of git commit authors Richard Leitner
2016-04-13 13:57 ` [psplash][PATCH 2/3] add initial .gitignore Richard Leitner
2016-04-13 13:57 ` [psplash][PATCH 3/3] README: add "Contributing" guideline Richard Leitner
2016-04-13 15:47   ` Burton, Ross
2016-04-13 19:42   ` Philip Balister
2016-04-14  9:30     ` Richard Leitner

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.