Solved FreeBSD 13.2-RELEASE-p10 is really EOL ?

Hello.

In one of my disks I have FreeBSD 13.2-RELEASE-p10 installed. Because of this error :

API mismatch : the client has the version 510.60.02,but this kernel module has the version 535.146.02. Please make sure that this kernel module and all NVIDIA driver components have the same version.

I tried to compile the nvidia driver from ports,but with my big surprise,it said that the support for FreeBSD 13.2-RELEASE-p10 has ended !

Code:
root@marietto:/usr/ports/x11/nvidia-driver # make

Ports collection support for your FreeBSD version has ended,and no ports are guaranteed to build on this system. Please upgrade to a supported release.

FreeBSD 13.2-RELEASE-p10 is really EOL ?
 
I don't know if it is correct,but I will try this procedure :


Code:
git clone https://git.freebsd.org/src.git /usr/src
cd /usr/src
git checkout releng/13.2
make -j14 buildworld
make -j14 buildkernel
make installworld
make installkernel
freebsd-version -kru
 
I found the information given in this way,so much compressed,very hard to follow and to understand. I avoid this form of communication like the plague. Anyway,the commands that I given before worked,except for the nvidia driver problem,that hasn't been fixed and this problem forces myself to start another thread.
 
I found the information given in this way,so much compressed,very hard to follow and to understand.
Did you read the relevant section in /usr/src/UPDATING? I suspect not.
Anyway,the commands that I given before worked
Sure, you're missing a couple of commands though. But you would have known this if you actually read the section of UPDATING Charlie_ pointed to.

except for the nvidia driver problem
Problem isn't with the driver, or the port. It's your system, you somehow managed to have 13.1 include and/or source files on a 13.2 system.
 
I started another post,since the problem of the nvidia driver is different from the problem of the upgrading of the 13.2. I think you have deleted the second post by mistake.
 
Problem isn't with the driver, or the port. It's your system, you somehow managed to have 13.1 include and/or source files on a 13.2 system.

nope. I fixed that problem. Now I have a full 13.2 working system. I said this before and I've also marked the question as resolved. There still be the problem of the nvidia driver to fix,because it persists even if now I'm running a real 13.2 system.
 
I imagine that you want to know what's the output of :

Code:
# grep 'define[[:blank:]]__FreeBSD_version' /usr/include/sys/param.h /usr/src/sys/sys/param.h

to check if you are right or not....well,this is :

Code:
# grep 'define[[:blank:]]__FreeBSD_version' /usr/include/sys/param.h /usr/src/sys/sys/param.h

version 1302001
version 1302001

it should be 13.2,right ? so,the nvidia driver does not work for a different reason. So please reopen the post n.2,very thanks.
 
---> x11/nvidia-driver and x11/nvidia-drm-kmod aren't the same version. And you failed to update the NVidia driver because your sources were the wrong version.

that's not true. I've installed the version : nvidia-drm-kmod-535.146.02.
and the nvidia driver version that I'm running is : 535.146.02
they match !

I see that you want that I continue to write to this thread,but this thread does not belong to the nvidia driver problem. Do you realize this,right ? I remember well as in the past you wanted to split different thread which talked about different problems. Well,now I'm trying to do it,but it seems that is ok anyway to mix different problems. I don't understand.
 
I've removed the drm-kmod from packages and then I've upgraded all the ports and I want to install the right version from the ports,but I don't understand what's the right version.

a) drm-510-kmod
b) drm-515-kmod
c) drm-61-kmod
d) drm-kmod

what's the correct one ? thanks.
 
I'm already exploring the ports and I see that only the below versions are available :

a) drm-510-kmod
b) drm-515-kmod
c) drm-61-kmod
d) drm-kmod
 
Instead the nvidia-drivers available from packages are the following :

a) 535.146.02
b) 304-304.137_10
c) 340-340-108_4
d) 390-390.154_1
e) 470-470.161.03

I don't see a match and I don't know what to do.
 
Back
Top