mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] Barebox logo
@ 2012-09-14  7:01 Jean-Christophe PLAGNIOL-VILLARD
  2012-09-14  7:41 ` [PATCH 1/1] add barebox logo Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 3+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-09-14  7:01 UTC (permalink / raw)
  To: barebox


Hi,

please pull
The following changes since commit 8b3bf5971afbdf1acc5becabb6f15ba4b2a5559d:

  tap: fix missing parent setting on eth_device (2012-09-12 17:26:26 +0200)

are available in the git repository at:

  git://git.jcrosoft.org/barebox.git tags/logo

for you to fetch changes up to 92c02ce92eea4ce02fce1cca11f73e6ed121ea76:

  add barebox logo (2012-09-14 14:54:38 +0800)

----------------------------------------------------------------
Barebox Logo

in logo/ you will found the barebox logo with color or white
in:
 - png24 (transparent)
 - png8 (black background)

for the following size
 - 100x100
 - 200x200
 - 400x400
 - 600x600
 - 800x800

The logo are origanize in a way to be able to include them in the envfs
by just point as it.

A vector version will be published later

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (1):
      add barebox logo

 logo/LICENCE                                |   22 ++++++++++++++++++++++
 logo/png24/100x100/color/barebox.png        |  Bin 0 -> 22724 bytes
 logo/png24/100x100/white/barebox.png        |  Bin 0 -> 12053 bytes
 logo/png24/200x200/color/barebox.png        |  Bin 0 -> 71557 bytes
 logo/png24/200x200/white/barebox.png        |  Bin 0 -> 31132 bytes
 logo/png24/400x400/color/barebox.png        |  Bin 0 -> 217170 bytes
 logo/png24/400x400/white/barebox.png        |  Bin 0 -> 78591 bytes
 logo/png24/600x600/color/barebox.png        |  Bin 0 -> 406788 bytes
 logo/png24/600x600/while/barebox.png        |  Bin 0 -> 137235 bytes
 logo/png24/800x800/color/barebox.png        |  Bin 0 -> 627433 bytes
 logo/png24/800x800/white/barebox.png        |  Bin 0 -> 210397 bytes
 logo/png8/100x100/color/blackbg/barebox.png |  Bin 0 -> 8279 bytes
 logo/png8/100x100/white/blackbg/barebox.png |  Bin 0 -> 6089 bytes
 logo/png8/200x200/color/blackbg/barebox.png |  Bin 0 -> 23616 bytes
 logo/png8/200x200/white/blackbg/barebox.png |  Bin 0 -> 14838 bytes
 logo/png8/400x400/color/blackbg/barebox.png |  Bin 0 -> 71295 bytes
 logo/png8/400x400/white/blackbg/barebox.png |  Bin 0 -> 38480 bytes
 logo/png8/600x600/color/blackbg/barebox.png |  Bin 0 -> 130709 bytes
 logo/png8/600x600/while/blackbg/barebox.png |  Bin 0 -> 68648 bytes
 logo/png8/800x800/color/blackbg/barebox.png |  Bin 0 -> 205281 bytes
 logo/png8/800x800/white/blackbg/barebox.png |  Bin 0 -> 104173 bytes
 21 files changed, 22 insertions(+)
 create mode 100644 logo/LICENCE
 create mode 100644 logo/png24/100x100/color/barebox.png
 create mode 100644 logo/png24/100x100/white/barebox.png
 create mode 100644 logo/png24/200x200/color/barebox.png
 create mode 100644 logo/png24/200x200/white/barebox.png
 create mode 100644 logo/png24/400x400/color/barebox.png
 create mode 100644 logo/png24/400x400/white/barebox.png
 create mode 100644 logo/png24/600x600/color/barebox.png
 create mode 100644 logo/png24/600x600/while/barebox.png
 create mode 100644 logo/png24/800x800/color/barebox.png
 create mode 100644 logo/png24/800x800/white/barebox.png
 create mode 100644 logo/png8/100x100/color/blackbg/barebox.png
 create mode 100644 logo/png8/100x100/white/blackbg/barebox.png
 create mode 100644 logo/png8/200x200/color/blackbg/barebox.png
 create mode 100644 logo/png8/200x200/white/blackbg/barebox.png
 create mode 100644 logo/png8/400x400/color/blackbg/barebox.png
 create mode 100644 logo/png8/400x400/white/blackbg/barebox.png
 create mode 100644 logo/png8/600x600/color/blackbg/barebox.png
 create mode 100644 logo/png8/600x600/while/blackbg/barebox.png
 create mode 100644 logo/png8/800x800/color/blackbg/barebox.png
 create mode 100644 logo/png8/800x800/white/blackbg/barebox.png

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 1/1] add barebox logo
  2012-09-14  7:01 [PATCH] Barebox logo Jean-Christophe PLAGNIOL-VILLARD
@ 2012-09-14  7:41 ` Jean-Christophe PLAGNIOL-VILLARD
  2012-09-16  7:46   ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-09-14  7:41 UTC (permalink / raw)
  To: barebox


in logo/ you will found the barebox logo with color or white
in:
 - png24 (transparent)
 - png8 (black background)

for the following size
 - 100x100
 - 200x200
 - 400x400
 - 600x600
 - 800x800

The logo are origanize in a way to be able to include them in the envfs
by just point as it.

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---

binary skipped

Best Regards,
J.
 logo/LICENCE                                |   22 ++++++++++++++++++++++
 logo/png24/100x100/color/barebox.png        |  Bin 0 -> 22724 bytes
 logo/png24/100x100/white/barebox.png        |  Bin 0 -> 12053 bytes
 logo/png24/200x200/color/barebox.png        |  Bin 0 -> 71557 bytes
 logo/png24/200x200/white/barebox.png        |  Bin 0 -> 31132 bytes
 logo/png24/400x400/color/barebox.png        |  Bin 0 -> 217170 bytes
 logo/png24/400x400/white/barebox.png        |  Bin 0 -> 78591 bytes
 logo/png24/600x600/color/barebox.png        |  Bin 0 -> 406788 bytes
 logo/png24/600x600/while/barebox.png        |  Bin 0 -> 137235 bytes
 logo/png24/800x800/color/barebox.png        |  Bin 0 -> 627433 bytes
 logo/png24/800x800/white/barebox.png        |  Bin 0 -> 210397 bytes
 logo/png8/100x100/color/blackbg/barebox.png |  Bin 0 -> 8279 bytes
 logo/png8/100x100/white/blackbg/barebox.png |  Bin 0 -> 6089 bytes
 logo/png8/200x200/color/blackbg/barebox.png |  Bin 0 -> 23616 bytes
 logo/png8/200x200/white/blackbg/barebox.png |  Bin 0 -> 14838 bytes
 logo/png8/400x400/color/blackbg/barebox.png |  Bin 0 -> 71295 bytes
 logo/png8/400x400/white/blackbg/barebox.png |  Bin 0 -> 38480 bytes
 logo/png8/600x600/color/blackbg/barebox.png |  Bin 0 -> 130709 bytes
 logo/png8/600x600/while/blackbg/barebox.png |  Bin 0 -> 68648 bytes
 logo/png8/800x800/color/blackbg/barebox.png |  Bin 0 -> 205281 bytes
 logo/png8/800x800/white/blackbg/barebox.png |  Bin 0 -> 104173 bytes
 21 files changed, 22 insertions(+)
 create mode 100644 logo/LICENCE
 create mode 100644 logo/png24/100x100/color/barebox.png
 create mode 100644 logo/png24/100x100/white/barebox.png
 create mode 100644 logo/png24/200x200/color/barebox.png
 create mode 100644 logo/png24/200x200/white/barebox.png
 create mode 100644 logo/png24/400x400/color/barebox.png
 create mode 100644 logo/png24/400x400/white/barebox.png
 create mode 100644 logo/png24/600x600/color/barebox.png
 create mode 100644 logo/png24/600x600/while/barebox.png
 create mode 100644 logo/png24/800x800/color/barebox.png
 create mode 100644 logo/png24/800x800/white/barebox.png
 create mode 100644 logo/png8/100x100/color/blackbg/barebox.png
 create mode 100644 logo/png8/100x100/white/blackbg/barebox.png
 create mode 100644 logo/png8/200x200/color/blackbg/barebox.png
 create mode 100644 logo/png8/200x200/white/blackbg/barebox.png
 create mode 100644 logo/png8/400x400/color/blackbg/barebox.png
 create mode 100644 logo/png8/400x400/white/blackbg/barebox.png
 create mode 100644 logo/png8/600x600/color/blackbg/barebox.png
 create mode 100644 logo/png8/600x600/while/blackbg/barebox.png
 create mode 100644 logo/png8/800x800/color/blackbg/barebox.png
 create mode 100644 logo/png8/800x800/white/blackbg/barebox.png

diff --git a/logo/LICENCE b/logo/LICENCE
new file mode 100644
index 0000000..c568afd
--- /dev/null
+++ b/logo/LICENCE
@@ -0,0 +1,22 @@
+Barebox Logo Licence
+
+Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+Copyright (C) 2012 JCrocoft.Ling Limited
+
+This logo or a modified version may be used by anyone to refer to the Barebox
+project only, but does not indicate endorsement by the project.
+
+The logo can be modified in the limit of the respect of the image to the
+Barebox project.
+
+In particular, we encourage you to use the logo for the purpose of advertising
+support for Barebox. This includes, but is not limited to, the following
+uses:
+ - systems that come preloaded with Barebox and such that support
+   Barebox through a flash upgrade.
+ - Barebox documentation
+ - posters, clothing, presentations and other promotion material referring to the
+   Barebox project
+
+Please make the image a link to http://www.barebox.org/ if you use it on a
+web page.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH 1/1] add barebox logo
  2012-09-14  7:41 ` [PATCH 1/1] add barebox logo Jean-Christophe PLAGNIOL-VILLARD
@ 2012-09-16  7:46   ` Sascha Hauer
  0 siblings, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2012-09-16  7:46 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Fri, Sep 14, 2012 at 09:41:43AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> 
> in logo/ you will found the barebox logo with color or white
> in:
>  - png24 (transparent)
>  - png8 (black background)
> 
> for the following size
>  - 100x100
>  - 200x200
>  - 400x400
>  - 600x600
>  - 800x800
> 
> The logo are origanize in a way to be able to include them in the envfs
> by just point as it.
> 
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> 
> binary skipped
> 
> Best Regards,
> J.
>  logo/LICENCE                                |   22 ++++++++++++++++++++++
>  logo/png24/100x100/color/barebox.png        |  Bin 0 -> 22724 bytes
>  logo/png24/100x100/white/barebox.png        |  Bin 0 -> 12053 bytes
>  logo/png24/200x200/color/barebox.png        |  Bin 0 -> 71557 bytes
>  logo/png24/200x200/white/barebox.png        |  Bin 0 -> 31132 bytes
>  logo/png24/400x400/color/barebox.png        |  Bin 0 -> 217170 bytes
>  logo/png24/400x400/white/barebox.png        |  Bin 0 -> 78591 bytes
>  logo/png24/600x600/color/barebox.png        |  Bin 0 -> 406788 bytes
>  logo/png24/600x600/while/barebox.png        |  Bin 0 -> 137235 bytes
>  logo/png24/800x800/color/barebox.png        |  Bin 0 -> 627433 bytes
>  logo/png24/800x800/white/barebox.png        |  Bin 0 -> 210397 bytes
>  logo/png8/100x100/color/blackbg/barebox.png |  Bin 0 -> 8279 bytes
>  logo/png8/100x100/white/blackbg/barebox.png |  Bin 0 -> 6089 bytes
>  logo/png8/200x200/color/blackbg/barebox.png |  Bin 0 -> 23616 bytes
>  logo/png8/200x200/white/blackbg/barebox.png |  Bin 0 -> 14838 bytes
>  logo/png8/400x400/color/blackbg/barebox.png |  Bin 0 -> 71295 bytes
>  logo/png8/400x400/white/blackbg/barebox.png |  Bin 0 -> 38480 bytes
>  logo/png8/600x600/color/blackbg/barebox.png |  Bin 0 -> 130709 bytes
>  logo/png8/600x600/while/blackbg/barebox.png |  Bin 0 -> 68648 bytes
>  logo/png8/800x800/color/blackbg/barebox.png |  Bin 0 -> 205281 bytes
>  logo/png8/800x800/white/blackbg/barebox.png |  Bin 0 -> 104173 bytes
>  21 files changed, 22 insertions(+)
>  create mode 100644 logo/LICENCE
>  create mode 100644 logo/png24/100x100/color/barebox.png
>  create mode 100644 logo/png24/100x100/white/barebox.png
>  create mode 100644 logo/png24/200x200/color/barebox.png
>  create mode 100644 logo/png24/200x200/white/barebox.png
>  create mode 100644 logo/png24/400x400/color/barebox.png
>  create mode 100644 logo/png24/400x400/white/barebox.png
>  create mode 100644 logo/png24/600x600/color/barebox.png
>  create mode 100644 logo/png24/600x600/while/barebox.png
>  create mode 100644 logo/png24/800x800/color/barebox.png
>  create mode 100644 logo/png24/800x800/white/barebox.png
>  create mode 100644 logo/png8/100x100/color/blackbg/barebox.png
>  create mode 100644 logo/png8/100x100/white/blackbg/barebox.png
>  create mode 100644 logo/png8/200x200/color/blackbg/barebox.png
>  create mode 100644 logo/png8/200x200/white/blackbg/barebox.png
>  create mode 100644 logo/png8/400x400/color/blackbg/barebox.png
>  create mode 100644 logo/png8/400x400/white/blackbg/barebox.png
>  create mode 100644 logo/png8/600x600/color/blackbg/barebox.png
>  create mode 100644 logo/png8/600x600/while/blackbg/barebox.png
>  create mode 100644 logo/png8/800x800/color/blackbg/barebox.png
>  create mode 100644 logo/png8/800x800/white/blackbg/barebox.png
> 
> diff --git a/logo/LICENCE b/logo/LICENCE
> new file mode 100644
> index 0000000..c568afd
> --- /dev/null
> +++ b/logo/LICENCE
> @@ -0,0 +1,22 @@
> +Barebox Logo Licence
> +
> +Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> +Copyright (C) 2012 JCrocoft.Ling Limited
> +
> +This logo or a modified version may be used by anyone to refer to the Barebox
> +project only, but does not indicate endorsement by the project.
> +
> +The logo can be modified in the limit of the respect of the image to the
> +Barebox project.
> +
> +In particular, we encourage you to use the logo for the purpose of advertising
> +support for Barebox. This includes, but is not limited to, the following
> +uses:
> + - systems that come preloaded with Barebox and such that support
> +   Barebox through a flash upgrade.
> + - Barebox documentation
> + - posters, clothing, presentations and other promotion material referring to the
> +   Barebox project
> +
> +Please make the image a link to http://www.barebox.org/ if you use it on a
> +web page.

Looks good, thanks. Applied this one.

Sascha


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2012-09-16  7:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-14  7:01 [PATCH] Barebox logo Jean-Christophe PLAGNIOL-VILLARD
2012-09-14  7:41 ` [PATCH 1/1] add barebox logo Jean-Christophe PLAGNIOL-VILLARD
2012-09-16  7:46   ` Sascha Hauer

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