From your error log (previous page) you would need to use the
--kernel-source-path option. In other words, type
Code:
./foobar --kernel-source-path /usr/src/kernel-source-path
where foobar is whatever command you need to used to start the installation, and /usr/src/kernel-source-path is just that (modify at will). Alternatively, the installation script is almost certainly looking for the kernel sources in /usr/src/linux, so have a look there and see if it matches the kernel you are running (use
uname -r to find out). If all you see is a tar.gz file, or a subdirectory of /usr/src/linux that does
not match your current kernel, then best to create a symlink from here to your new kernel source, e.g. as root
Code:
ln -s /new/path /usr/src/linux
Obviously, replace /new/path with the absolute path to the kernel source code that you want the driver to use. If it is the correct kernel source code, but in a tar.gz file, run (as root)
tar -xvvzf kernel-source-filename.tar.gz.
Also, if you are using an LCD screen, then when you are running the xorgconfig script, you may want to just try using a 'generic' screen type - these sometimes have more success than the so-called correct ones; along with perhaps a standard VESA driver.
Cheers,
mj