Nvidia graphics card (such as GeForce, Quadro, and ION) are not supported out of the box by MeeGo. However, it is possible to run MeeGo on such hardware : File:Http://img819.imageshack.us/img819/8713/meegoonnvidia.png
Nvidia proprietary drivers requires xinerama support on Xorg (although it will almost never use any xinerama extension). However, xinerama is disabled by default, in order to improve boot speed.
The procedure below will explain how to enable xinerama support. It will assume that you have a working internet connexion, which is very unlikely to be the case as configuring wifi is done by GUI interface... The workaround used by the author is to chroot meego partition from another linux, but it goes beyond the purpose of this tutorial (at the moment).
http://download.obs.maemo.org/home:/vljn/MeeGo_1.0_Core/
Eventually, you can download all file from http://download.obs.maemo.org/home:/vljn/MeeGo_1.0_Core/i586 by hand.
xorg-x11-server-1.8.0 xorg-x11-server-Xorg-1.8.0 xorg-x11-server-Xorg-setuid-1.8.0 xorg-x11-server-common-1.8.0 xorg-x11-server-debuginfo-1.8.0 xorg-x11-server-devel-1.8.0
yum install kernel-netbook-devel gcc make
wget http://us.download.nvidia.com/XFree86/Linux-x86/256.44/NVIDIA-Linux-x86-256.44.run
sh NVIDIA-Linux-x86-256.44.run
When it asks to install a default xorg.conf in /etc/X11/xorg.conf, say no.
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
# Keyboard layouts
Option "XkbLayout" "us, bg"
Option "XkbVariant" ", phonetic"
Option "XkbOptions" "grp:alt_shift_toggle, grp_led:scroll, terminate:ctrl_alt_bksp"
EndSection
Section "Device"
Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation"
EndSection
Because Xorg may not recognise your mouse device properly (remember, Meego is aimed at netbook with touchpad input, and at fast booting, some default device are not included to allow this)