View Single Post
b-man's Avatar
Posts: 549 | Thanked: 502 times | Joined on Feb 2008 @ Bowling Green Ohio (united states)
#16
Originally Posted by kingoddball View Post
It just won't boot.
I'm not using the right kernel that Jabba supplied and i think that's what is killing me.
Have you tried using the stock fremantle kernel?

Originally Posted by kingoddball View Post
I'm using a kernel with a frame buffer (Android dual boot kernel).
I've compiled the fbcon framebuffer console drivers into kernel modules to save some time so people won't have to mess with compiling a new kernel just for framebuffer console support.

(NOTE: keep in mind that these kernel modules only work with the stock kernel - this won't work with the power-user kernel)

As root, download the kernel module tarball and unpack it in the terminal:
Code:
wget -c http://b-man.xceleo.org/files/fbcon-rx51.3.7.2010.tar.gz

tar -zxvf fbcon-rx51.3.7.2010.tar.gz

cd fbcon/
Next, copy all the modules, clean up, and resolve dependencies for modprobe:

Code:
cp -a *.ko /lib/modules/`uname -r`/

cd ..

rm -rf fbcon/

rm -rf fbcon-rx51.3.7.2010.tar.gz

cd /lib/modules/`uname -r`/

depmod -a
Last, to load the fbcon framebuffer console driver, run the following (NOTE: this driver will not automatically load at startup; you must run this manually or add this to an init script or add this to /etc/rc.local if available on your system if you want this to run at startup.)

Code:
modprobe fbcon
optionally, you can check the status of your loaded fbcon driver with the following command:

Code:
dmesg | tail
have fun!
__________________
I'm an advanced user and a bit of a modder.
----------------------------------------------
I am involved with Mer, Deblet, and NITdroid.
My ports/creations/hacks: GNOME (for Deblet), Cdeb2», Ubuntu, playable flash games in the "Get Started" app, DBS, ect...


enhanced fedora port has been canceled in favor of NITDebian (TBA)

Last edited by b-man; 2010-06-16 at 23:18.
 

The Following 2 Users Say Thank You to b-man For This Useful Post: