This one?
http://pastebin.com/wUeeX085(BTW, you should have gotten a link from pastebin to be able to post here what you pasted there.)
Lots of warnings.. Honestly, I don't know.
Maybe the kernel source isn't prepared properly.
In that case, this might help:
http://wiki.tinycorelinux.net/wiki:custom_kernelI just did the following successfully...
Edited create-nvidia-raw:
#!/bin/sh
KERN=`uname -r`
VERS="304.125"
tce-load -w compiletc findutils squashfs-tools procps
tce-load -i compiletc findutils squashfs-tools procps
touch NOW
sleep 5
sudo sh ./NVIDIA-Linux-x86-$VERS.run \
--accept-license \
--no-network \
--no-runlevel-check \
--x-module-path=/usr/local/lib/xorg/modules
rm -f nvidia-raw.tar.gz
rm -rf nvidia-raw
mkdir -p nvidia-raw/rawpackage
find /usr -newer NOW -not -type d > nvidia-raw.list
find /lib -newer NOW -not -type d | grep /lib/modules/$KERN/kernel/drivers/ >> nvidia-raw.list
tar -T nvidia-raw.list -czvf nvidia-raw.tar.gz
cd nvidia-raw/rawpackage
tar -xf ../../nvidia-raw.tar.gz
cd ..
rm -f /usr/lib/*tls*.*
#sudo nvidia-xconfig --mode=1280x1024 --force-generate --virtual=1280x1024
Removed any nvidia drivers from onboot.lst .
Rebboted.
Core tryed to startx -> failed in waitforX (no wonder, there's no driver currently).
Did this in linux console (I have 2GB RAM):
tce-load -i linux-kernel-sources-env
linux-kernel-sources-env.sh
./create-nvidia-raw
startx
It compiles right away without errors and X launches. Also sudo nvidia-settings works.
You might need to already have a valid xorg.conf though. If X doesn't start, do:
sudo nvidia-xconfig --mode=1280x1024 --force-generate --virtual=1280x1024
Or whatever screen res you need. Also, nvidia might need to be listed as Driver in the Device section of xorg.conf.