All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Francisco Jerez <currojerez-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org>
Cc: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
	Dragos Delcea
	<dragos.delcea-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: [PATCH] drm/nouveau: try to load fbcon
Date: Wed, 25 Aug 2010 20:18:13 +0200	[thread overview]
Message-ID: <20100825181813.GA6991@joi.lan> (raw)
In-Reply-To: <87sk22brd2.fsf-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org>

On Wed, Aug 25, 2010 at 06:15:53PM +0200, Francisco Jerez wrote:
> Dragos Delcea <dragos.delcea-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
> 
> > Hi,
> >
> > I noticed that loading nouveau doesn't load fbcon automatically; and without fbcon, when loading nouveau the
> > console turns blank. I spent a few good hours until I was able to figure out that I had to manually modprobe
> > fbcon to get the console back after loading nouveau.
> > This is happening on a vanilla 2.6.35.3; shouldn't there be dependencies in place between modules?
> >
> > Note that I haven't got to the xorg part just yet, I'm currently installing gentoo.
> >
> We already do, except for kernels compiled with "Configure standard
> kernel features (for small systems)". Strictly speaking, nouveau doesn't
> depend on fbcon so that option is left open for e.g. embedded platforms
> that don't need a framebuffer console.

But it's only a build time dependency. Let's fix it.

---
From: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: [PATCH] drm/nouveau: try to load fbcon

Currently users have to load fbcon manually or build it
into the kernel to have any console output.
Let's make it easy for them and load fbcon automatically
at init time. Nouveau already selects fbcon at build time
when !EMBEDDED.

Reported-by: Dragos Delcea <dragos.delcea-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 drivers/gpu/drm/nouveau/nouveau_drv.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.c b/drivers/gpu/drm/nouveau/nouveau_drv.c
index a8d3d17..df9a687 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.c
@@ -434,6 +434,12 @@ static int __init nouveau_init(void)
 	if (!nouveau_modeset)
 		return 0;
 
+#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE)
+	request_module("fbcon");
+#elif !defined(CONFIG_FRAMEBUFFER_CONSOLE)
+	printk(KERN_INFO "CONFIG_FRAMEBUFFER_CONSOLE was not enabled. You won't get any console output.\n");
+#endif
+
 	nouveau_register_dsm_handler();
 	return drm_init(&driver);
 }
-- 
1.7.1.1

  parent reply	other threads:[~2010-08-25 18:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-25 13:26 shouldn't nouveau.ko depend on fbcon.ko? Dragos Delcea
     [not found] ` <AANLkTinqnf3qpSBhb6g7EtxVO3d+_BbcYfxXZJC9Ht9A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-08-25 16:15   ` Francisco Jerez
     [not found]     ` <87sk22brd2.fsf-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org>
2010-08-25 18:18       ` Marcin Slusarz [this message]
     [not found]         ` <20100825181813.GA6991-OI9uyE9O0yo@public.gmane.org>
2010-08-25 22:39           ` [PATCH] drm/nouveau: try to load fbcon Francisco Jerez

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=20100825181813.GA6991@joi.lan \
    --to=marcin.slusarz-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=currojerez-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org \
    --cc=dragos.delcea-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    /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.