In kernel 2.3.13, the framebuffer's video_setup() is not being called,
preventing any command-line parameters for video= from being processed
before the driver's initialization function is called. We all know what
kind of problems that can cause :) Here's a quick patch, which I am
sure has already been included in the 2.3.14, but I'm including it JIC.
Bry
---------------------- START PATCH
--- linux/drivers/video/fbmem.c.orig Wed Aug 18 08:17:51 1999
+++ linux/drivers/video/fbmem.c Wed Aug 18 02:28:31 1999
@@ -761,6 +761,7 @@
}
}
+__setup("video=", video_setup);
/*
* Visible symbols for modules
---------------------- END PATCH
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/