From: Mikael Pettersson <mikpe@it.uu.se> Date: Tue, 6 May 2008 09:54:05 +0200It's possible your machine does boot up all the way. The video driver simply isn't registerring for whatever reason. Can you ping the box if you wait a minute or two after the messages stop? The only patch to the aty driver since 2.6.25 is the following, below, which you can try reverting. Another thing you can do is edit arch/sparc64/kernel/setup.c and in the prom_early_console struct initializer, remove the "CON_BOOT" bit from the .flags setting. That will keep the PROM console enabled even when another console wants to register. We'll get more messages that way. commit 21b4d1db84a70175251d86078123cc27e46ff69d Author: Roel Kluin <12o3l@tiscali.nl> Date: Mon Apr 28 02:15:04 2008 -0700 video/aty/atyfb_base.c: free when fb can't be registered Free buffer when the framebuffer can't be registered Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> diff --git a/drivers/video/aty/atyfb_base.c b/drivers/video/aty/atyfb_base.c index 62f9c6e..e4bcf53 100644 --- a/drivers/video/aty/atyfb_base.c +++ b/drivers/video/aty/atyfb_base.c @@ -2621,10 +2621,13 @@ static int __devinit aty_init(struct fb_info *info) #endif /* CONFIG_FB_ATY_CT */ info->var = var; - fb_alloc_cmap(&info->cmap, 256, 0); + if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) + goto aty_init_exit; - if (register_framebuffer(info) < 0) + if (register_framebuffer(info) < 0) { + fb_dealloc_cmap(&info->cmap); goto aty_init_exit; + } fb_list = info; --
| Greg Kroah-Hartman | [PATCH 001/196] Chinese: Add the known_regression URI to the HOWTO |
| Evgeniy Polyakov | Distributed storage. Move away from char device ioctls. |
| Rafael J. Wysocki | 2.6.26-rc9-git12: Reported regressions from 2.6.25 |
| Alan Cox | [PATCH 00/76] Queued TTY Patches |
git: | |
| Linus Torvalds | Re: [RFH] revision limiting sometimes ignored |
| Linus Torvalds | People unaware of the importance of "git gc"? |
| bain | [Announce] teamGit v0.0.3 |
| Domenico Andreoli | dangling blob which is not dangling at all |
| Leon Dippenaar | New tcp stack attack |
| Richard Stallman | Real men don't attack straw men |
| David B. | find -exec {} help |
| Alexey Suslikov | OT: OpenBSD on Asus eeePC |
| Milan Kocian | Re: [PATCH 1/1] ipv6: corrects sended rtnetlink message |
| Jeff Garzik | Re: [bug?] tg3: Failed to load firmware "tigon/tg3_tso.bin" |
| Alexey Dobriyan | Re: [GIT]: Networking |
| David Stevens | Re: [GIT PULL] [IPV6] COMPAT: Fix SSM applications on 64bit kernels. |
