Re: Re[2]: X
Thanks for the help so far... unfortunately it isn't
solved yet...
I marked the line which creates errors and stuff ... I
attached the output in a text file (emailing in
windows now so chmod is 755)
--- Ochronus <deblists@mailbox.hu> wrote:
> cd /usr/src
>
> tar xvfz nvidia-kernel-src.tar.gz
>
> export KSRC=/usr/src/
> (Or/usr/src/kernel-headers-XXX if you only have
> the kernel-headers
> package)
>
> export KVERS=<your kernel version here> (e.g.
> 2.4.18)
>
> cd modules/nvidia-kernel-XXXX
> debian/rules binary_modules <-- this gives
problems
>
> cd /usr/src
> dpkg -i nvidia-kernel-blahblah.deb
>
>
__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
if [ -f /usr/src/modules/nvidia-kernel-1.0.2880/debian/control.template ]; then \
cp -a /usr/src/modules/nvidia-kernel-1.0.2880/debian/control.template /usr/src/modules/nvidia-kernel-1.0.2880/debian/control; \
fi
dh_testdir
dh_testroot
if [ ! -f /usr/src/"NVIDIA_kernel-1.0-2880.tar.gz" ]; then \
echo "NVIDIA_kernel needs to be downloaded."; \
if which wget > /dev/null; then \
echo "Now attempting to download NVIDIA_kernel."; \
if ! `wget --passive-ftp -P /usr/src -U "Debian GNU/Linux" http://205.158.109.140/XFree86_40/1.0-2880/"NVIDIA_kernel-1.0-2880.tar.gz"`; then \
echo ""NVIDIA_kernel-1.0-2880.tar.gz" not on web server."; \
exit 1; \
fi; \
else \
echo "wget not found. (apt-get install wget)"; \
exit 1; \
fi; \
fi
tar -zxvf /usr/src/"NVIDIA_kernel-1.0-2880.tar.gz"
NVIDIA_kernel-1.0-2880/
NVIDIA_kernel-1.0-2880/Makefile
NVIDIA_kernel-1.0-2880/README
NVIDIA_kernel-1.0-2880/makedevices.sh
NVIDIA_kernel-1.0-2880/nv.c
NVIDIA_kernel-1.0-2880/nv.h
NVIDIA_kernel-1.0-2880/nv_ref.h
NVIDIA_kernel-1.0-2880/nvrm.h
NVIDIA_kernel-1.0-2880/nvtypes.h
NVIDIA_kernel-1.0-2880/nv-linux.h
NVIDIA_kernel-1.0-2880/os-interface.h
NVIDIA_kernel-1.0-2880/os-interface.c
NVIDIA_kernel-1.0-2880/os-registry.c
NVIDIA_kernel-1.0-2880/nv-ids.h
NVIDIA_kernel-1.0-2880/Module-nvkernel
touch configure-stamp
dh_testdir
dh_testroot
make -C /usr/src/modules/nvidia-kernel-1.0.2880/NVIDIA_kernel-1.0-2880 SYSINCLUDE=/usr/src//include NVdriver
make[1]: Entering directory `/usr/src/modules/nvidia-kernel-1.0.2880/NVIDIA_kernel-1.0-2880'
You appear to be compiling the NVdriver kernel module with
a compiler different from the one that was used to compile
the running kernel. This may be perfectly fine, but there
are cases where this can lead to unexpected behaviour and
system crashes.
If you know what you are doing and want to override this
check, you can do so by setting IGNORE_CC_MISMATCH.
In any other case, set the CC environment variable to the
name of the compiler that was used to compile the kernel.
[1;31m*** Failed cc sanity check. Bailing out! ***
[0mmake[1]: Leaving directory `/usr/src/modules/nvidia-kernel-1.0.2880/NVIDIA_kernel-1.0-2880'
Reply to:
- References:
- Re[2]: X
- From: Ochronus <deblists@mailbox.hu>