Sorry for double posting, but I got it working!

Here is how to do it:

Get necessary files:
Code:
sudo apt-get install git-core linux-headers-generic automake autoconf libtool
git clone git://anongit.freedesktop.org/git/mesa/drm
Compile and install libdrm:
Code:
cd drm
./autogen.sh --prefix=/usr
make
sudo make install
Compile and install DRM kernel module:
Code:
cd linux-core
make LINUXDIR=/lib/modules/`uname -r`/build DRM_MODULES=i915
sudo cp *.ko /lib/modules/`uname -r`/kernel/drivers/char/drm/
sudo depmod -ae
Reboot and enjoy!