Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package:  fbdump
@ 2008-08-27 11:01 laird at uclibc.org
  2008-08-27 11:19 ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: laird at uclibc.org @ 2008-08-27 11:01 UTC (permalink / raw)
  To: buildroot

Author: laird
Date: 2008-08-27 04:01:16 -0700 (Wed, 27 Aug 2008)
New Revision: 23239

Log:
fbdump: Add new package fbdump.

fbdump is a simple tool to capture snapshots from the Linux kernel framebuffer 
device and write them out as a PPM file. Currently, most packed-pixel framebuffer
formats and the vga16 framebuffer are supported.



Added:
   trunk/buildroot/package/fbdump/
   trunk/buildroot/package/fbdump/Config.in
   trunk/buildroot/package/fbdump/fbdump.mk

Modified:
   trunk/buildroot/package/Config.in


Changeset:
Modified: trunk/buildroot/package/Config.in
===================================================================
--- trunk/buildroot/package/Config.in	2008-08-27 07:46:55 UTC (rev 23238)
+++ trunk/buildroot/package/Config.in	2008-08-27 11:01:16 UTC (rev 23239)
@@ -323,6 +323,7 @@
 
 comment "graphic libraries"
 source "package/directfb/Config.in"
+source "package/fbdump/Config.in"
 source "package/fusion/Config.in"
 source "package/imagemagick/Config.in"
 source "package/jpeg/Config.in"

Added: trunk/buildroot/package/fbdump/Config.in
===================================================================
--- trunk/buildroot/package/fbdump/Config.in	                        (rev 0)
+++ trunk/buildroot/package/fbdump/Config.in	2008-08-27 11:01:16 UTC (rev 23239)
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_FBDUMP
+	bool "fbdump (Framebuffer Capture Tool)"
+	help
+	   fbdump is a simple tool to capture snapshots from the Linux kernel framebuffer
+	   device and write them out as a PPM file. Currently, most packed-pixel framebuffer
+       formats and the vga16 framebuffer are supported.
+

Added: trunk/buildroot/package/fbdump/fbdump.mk
===================================================================
--- trunk/buildroot/package/fbdump/fbdump.mk	                        (rev 0)
+++ trunk/buildroot/package/fbdump/fbdump.mk	2008-08-27 11:01:16 UTC (rev 23239)
@@ -0,0 +1,16 @@
+#############################################################
+#
+# fbdump
+#
+#############################################################
+FBDUMP_VERSION:=0.4.2
+FBDUMP_SOURCE:=fbdump-$(FBDUMP_VERSION).tar.gz
+FBDUMP_SITE:=http://www.rcdrummond.net/fbdump
+FBDUMP_AUTORECONF = NO
+FBDUMP_CONF_ENV = ac_cv_func_malloc_0_nonnull=yes
+FBDUMP_INSTALL_STAGING = YES
+FBDUMP_INSTALL_TARGET = YES
+FBDUMP_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-strip
+
+$(eval $(call AUTOTARGETS,package,fbdump))
+

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

* [Buildroot] svn commit: trunk/buildroot/package:  fbdump
  2008-08-27 11:01 [Buildroot] svn commit: trunk/buildroot/package: fbdump laird at uclibc.org
@ 2008-08-27 11:19 ` Peter Korsgaard
  2008-08-27 11:25   ` Bernhard Reutner-Fischer
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2008-08-27 11:19 UTC (permalink / raw)
  To: buildroot

>>>>> "laird" == laird  <laird@uclibc.org> writes:

Hi,

 laird> Added: trunk/buildroot/package/fbdump/Config.in
 laird> ===================================================================
 laird> --- trunk/buildroot/package/fbdump/Config.in	                        (rev 0)
 laird> +++ trunk/buildroot/package/fbdump/Config.in	2008-08-27 11:01:16 UTC (rev 23239)
 laird> @@ -0,0 +1,7 @@
 laird> +config BR2_PACKAGE_FBDUMP
 laird> +	bool "fbdump (Framebuffer Capture Tool)"
 laird> +	help
 laird> +	   fbdump is a simple tool to capture snapshots from the Linux kernel framebuffer
 laird> +	   device and write them out as a PPM file. Currently, most packed-pixel framebuffer
 laird> +       formats and the vga16 framebuffer are supported.

The last line is fubar'ed (should be tab + 2 spaces):

package/fbdump/Config.in:6: unknown option "formats"

The other lines are also indented 1 char too much (2 spaces, not 3).

While you're at it, please break up the lines after ~72 chars so it's
visible in kconfig on a normal 80 char terminal without scrolling.

 laird> +FBDUMP_VERSION:=0.4.2
 laird> +FBDUMP_SOURCE:=fbdump-$(FBDUMP_VERSION).tar.gz
 laird> +FBDUMP_SITE:=http://www.rcdrummond.net/fbdump
 laird> +FBDUMP_AUTORECONF = NO
 laird> +FBDUMP_CONF_ENV = ac_cv_func_malloc_0_nonnull=yes
 laird> +FBDUMP_INSTALL_STAGING = YES

Why install into staging?

 laird> +FBDUMP_INSTALL_TARGET = YES
 laird> +FBDUMP_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-strip
 laird> +
 laird> +$(eval $(call AUTOTARGETS,package,fbdump))
 laird> +

-- 
Bye, Peter Korsgaard

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

* [Buildroot] svn commit: trunk/buildroot/package:  fbdump
  2008-08-27 11:19 ` Peter Korsgaard
@ 2008-08-27 11:25   ` Bernhard Reutner-Fischer
  2008-08-27 19:40     ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-08-27 11:25 UTC (permalink / raw)
  To: buildroot

On Wed, Aug 27, 2008 at 01:19:31PM +0200, Peter Korsgaard wrote:

>While you're at it, please break up the lines after ~72 chars so it's
>visible in kconfig on a normal 80 char terminal without scrolling.

Perhaps you want to (temporarily) pull
http://busybox.net/cgi-bin/viewcvs.cgi?rev=22852&view=rev

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

* [Buildroot] svn commit: trunk/buildroot/package:  fbdump
  2008-08-27 11:25   ` Bernhard Reutner-Fischer
@ 2008-08-27 19:40     ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2008-08-27 19:40 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernhard" == Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> writes:

 Bernhard> On Wed, Aug 27, 2008 at 01:19:31PM +0200, Peter Korsgaard wrote:
 >> While you're at it, please break up the lines after ~72 chars so it's
 >> visible in kconfig on a normal 80 char terminal without scrolling.

 Bernhard> Perhaps you want to (temporarily) pull
 Bernhard> http://busybox.net/cgi-bin/viewcvs.cgi?rev=22852&view=rev

Neat, thanks!

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2008-08-27 19:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-27 11:01 [Buildroot] svn commit: trunk/buildroot/package: fbdump laird at uclibc.org
2008-08-27 11:19 ` Peter Korsgaard
2008-08-27 11:25   ` Bernhard Reutner-Fischer
2008-08-27 19:40     ` Peter Korsgaard

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