All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jon Smirl <jonsmirl@gmail.com>
To: Andrew Morton <akpm@osdl.org>
Cc: adaplas@pol.net, adaplas@hotpop.com,
	linux-fbdev-devel@lists.sourceforge.net
Subject: Re: [PATCH 8/10] fbdev: Allow core fb to be built as a module
Date: Mon, 7 Mar 2005 13:20:20 -0500	[thread overview]
Message-ID: <9e4733910503071020515b2014@mail.gmail.com> (raw)
In-Reply-To: <20050307022828.54d52983.akpm@osdl.org>

This should fix the tileblit build problem. I think it fixes the ppc
build too but I don't have a ppc machine to try it on.


===== drivers/video/Kconfig 1.77 vs edited =====
--- 1.77/drivers/video/Kconfig	2005-03-02 18:18:16 -05:00
+++ edited/drivers/video/Kconfig	2005-03-07 12:38:27 -05:00
@@ -541,6 +541,7 @@
 config FB_MATROX
 	tristate "Matrox acceleration"
 	depends on FB && PCI
+	select FB_TILEBLITTING
 	---help---
 	  Say Y here if you have a Matrox Millennium, Matrox Millennium II,
 	  Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
===== drivers/video/Makefile 1.117 vs edited =====
--- 1.117/drivers/video/Makefile	2005-02-17 19:03:05 -05:00
+++ edited/drivers/video/Makefile	2005-03-07 12:33:35 -05:00
@@ -10,10 +10,6 @@
 
 obj-$(CONFIG_FB)                  += fb.o
 fb-y                              := fbmem.o fbmon.o fbcmap.o
fbsysfs.o modedb.o softcursor.o
-# Only include macmodes.o if we have FB support and are PPC
-ifneq ($(CONFIG_FB),n)
-fb-$(CONFIG_PPC)                  += macmodes.o
-endif
 fb-objs                           := $(fb-y)
 
 # Hardware specific drivers go first
===== drivers/video/console/Makefile 1.19 vs edited =====
--- 1.19/drivers/video/console/Makefile	2004-10-19 05:40:21 -04:00
+++ edited/drivers/video/console/Makefile	2005-03-07 12:32:16 -05:00
@@ -25,7 +25,9 @@
 obj-$(CONFIG_VGA_CONSOLE)         += vgacon.o
 obj-$(CONFIG_MDA_CONSOLE)         += mdacon.o
 obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += fbcon.o bitblit.o font.o
-obj-$(CONFIG_FB_TILEBLITTING)     += tileblit.o
+ifeq ($(CONFIG_FB_TILEBLITTING),y)
+obj-$(CONFIG_FRAMEBUFFER_CONSOLE)     += tileblit.o
+endif
 
 obj-$(CONFIG_FB_STI)              += sticore.o
 

-- 
Jon Smirl
jonsmirl@gmail.com


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click

  reply	other threads:[~2005-03-07 18:20 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-06  0:16 [PATCH 8/10] fbdev: Allow core fb to be built as a module Antonino A. Daplas
2005-03-07  8:36 ` Andrew Morton
2005-03-07  9:39   ` Geert Uytterhoeven
2005-03-07 10:28 ` Andrew Morton
2005-03-07 18:20   ` Jon Smirl [this message]
2005-03-07 19:11   ` Jon Smirl
2005-03-07 23:43     ` Andrew Morton
2005-03-08  0:05       ` Jon Smirl
2005-03-08  0:39         ` Andrew Morton
2005-03-08  0:35       ` Jon Smirl
2005-03-08  0:48         ` Andrew Morton
2005-03-08  1:18           ` Randy.Dunlap
2005-03-08  1:47         ` Andrew Morton
2005-03-08  4:50           ` Jon Smirl
2005-03-08  4:58             ` Andrew Morton
2005-03-09  5:48               ` Antonino A. Daplas
2005-03-09  6:50                 ` Andrew Morton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9e4733910503071020515b2014@mail.gmail.com \
    --to=jonsmirl@gmail.com \
    --cc=adaplas@hotpop.com \
    --cc=adaplas@pol.net \
    --cc=akpm@osdl.org \
    --cc=linux-fbdev-devel@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.