Good news today

drhowarddrfine official release isn't till the 16th, or at least planned for then. What I think @fjdir did was upgrade to RC's, then if you ran pkg upgrade on the RC, you wound up with 15.1-RELEASE. I have a vm I've been updating to RC's and today just ran pkg update and pkg upgrade and it upgraded to 15.1-RELEASE without me doing anything, but pkg upgrade and pkg update. For me, I've only done it on VM's so far, I'll probably wait for the official release announecment, but it seems as if updating to RC's and then RELEASE is working.
 
drhowarddrfine official release isn't till the 16th, or at least planned for then. What I think @fjdir did was upgrade to RC's, then if you ran pkg upgrade on the RC, you wound up with 15.1-RELEASE. I have a vm I've been updating to RC's and today just ran pkg update and pkg upgrade and it upgraded to 15.1-RELEASE without me doing anything, but pkg upgrade and pkg update. For me, I've only done it on VM's so far, I'll probably wait for the official reaease announcment, but it seems as if updating to RC's and then RELEASE is working.
Building 15.1 from anonymous ftp freebsd.org
I had to disable VIA padlock RNG in RC2. No idea what that is. See it if compiles now.
 
Kernel panic page fault trap 14

I don't see this on the official release page yet.
Is this related to the drm module? Be sure you are using graphics/drm-latest-kmod and not graphics/drm-kmod if using the meta-port (the latter pulls in the driver for 15.0) or the correct version of the package for 15.1 (1501000_9); both are present in the repository:
Code:
$ pkg search -x '^drm'
drm-515-kmod-5.15.160.1500068_10 Direct Rendering Manager (DRM) GPU drivers
drm-61-kmod-6.1.128.1500068_10 Direct Rendering Manager (DRM) GPU drivers
drm-66-kmod-6.6.25.1500068_10  Direct Rendering Manager (DRM) GPU drivers
drm-kmod-20260508              Direct Rendering Manager (DRM) GPU drivers metaport
drm_info-2.10.0                Dump info about DRM devices
drm-515-kmod-5.15.160.1501000_9 Direct Rendering Manager GPU drivers
drm-61-kmod-6.1.128.1501000_9  Direct Rendering Manager GPU drivers
drm-66-kmod-6.6.25.1501000_9   Direct Rendering Manager GPU drivers
drm-latest-kmod-6.9.1501000_1  DRM drivers modules
 
it will be tied to drm-612-kmod
That would be graphics/drm-kmod, not graphics/drm-latest-kmod.

graphics/drm-kmod has some logic to 'automagically' pick a version:
Code:
.if ${OPSYS} != FreeBSD
IGNORE=		not supported on anything but FreeBSD (missing linuxkpi functionality)
.else
.  if ${OSVERSION} >= 1500509 && ${ARCH} == amd64
RUN_DEPENDS+=	${KMODDIR}/drm.ko:graphics/drm-612-kmod
_DRM_ARCHS=	amd64
.  elif ${OSVERSION} >= 1500031 && ${ARCH} == amd64
RUN_DEPENDS+=	${KMODDIR}/drm.ko:graphics/drm-66-kmod
_DRM_ARCHS=	amd64
.  else
RUN_DEPENDS+=	${KMODDIR}/drm.ko:graphics/drm-61-kmod
_DRM_ARCHS=	amd64 powerpc64 powerpc64le
.  endif
.  if ! ${_DRM_ARCHS:M${ARCH}}
IGNORE=		not supported for this configuration
.  endif
.endif
 
Back
Top