All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] Enable i830 graphics driver for DirectFB
@ 2009-09-23  5:06 Ormund Williams
  2009-09-23  7:24 ` Peter Korsgaard
  0 siblings, 1 reply; 2+ messages in thread
From: Ormund Williams @ 2009-09-23  5:06 UTC (permalink / raw)
  To: buildroot

I'm still learning to use git, so if anyone can turn these diffs into a
real patch I would appreciate it.


--- Config.in.old 2009-09-22 17:26:45.000000000 -0400
+++ Config.in     2009-09-22 14:37:28.000000000 -0400
@@ -61,6 +61,12 @@
 	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_i386 || BR2_x86_64
 
+config BR2_PACKAGE_DIRECTFB_I830
+	bool "compile i830 graphics driver"
+	default y
+	depends on BR2_PACKAGE_DIRECTFB
+	depends on BR2_i386 || BR2_x86_64
+
 config BR2_PACKAGE_DIRECTFB_LINUXINPUT
 	bool "compile /dev/input/eventX input driver"
 	default y


--- directfb.mk.old 2009-09-22 17:27:16.000000000 -0400
+++ directfb.mk	2009-09-22 14:40:47.000000000 -0400
@@ -63,6 +63,9 @@
 ifeq ($(BR2_PACKAGE_DIRECTFB_UNICHROME),y)
 DIRECTFB_GFX+= unichrome
 endif
+ifeq ($(BR2_PACKAGE_DIRECTFB_I830),y)
+DIRECTFB_GFX+= i830
+endif
 ifeq ($(DIRECTFB_GFX),)
 DIRECTFB_GFX:=none
 else

-- 
Ormund Williams
OrmLab LLC

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

* [Buildroot] Enable i830 graphics driver for DirectFB
  2009-09-23  5:06 [Buildroot] Enable i830 graphics driver for DirectFB Ormund Williams
@ 2009-09-23  7:24 ` Peter Korsgaard
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2009-09-23  7:24 UTC (permalink / raw)
  To: buildroot

>>>>> "Ormund" == Ormund Williams <ormundw@panix.com> writes:

 Ormund> I'm still learning to use git, so if anyone can turn these diffs into a
 Ormund> real patch I would appreciate it.

Normally you would simply commit changes locally on another branch, run
git format-patch master and then (preferably) send them with git-email or
through your normal mail program.

E.G. git checkout -b something
git commit -a
git format-patch master
git send-email --to buildroot at uclibc.org 0*.patch
git checkout master
rm 0*patch

Could you give it a try?

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2009-09-23  7:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-23  5:06 [Buildroot] Enable i830 graphics driver for DirectFB Ormund Williams
2009-09-23  7:24 ` Peter Korsgaard

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.