Solved Xorg upgrade on 13.2

I recently upgraded xorg-server on 13.2, maybe two days ago, and the newer version of xorg-server; 21.1.11_1,1, leaves me with a very slow startup.

Basically, Lightdm starts very slowly and appears to have added a user with the username '&'.
Gnome will not start.
XFCE does start, but starts slower.
I also appear to have lost the ability to mount userdrives.

If I start lightdm from the console I get some dbus errors, although that's not too unusual.
I have an intel integrated video card, which always used to work with the i915kms module.
I also have the 'fuse' module installed.

I have this in rc.conf
Code:
lightdm_enable="YES"
kld_list="cuse nmdm vmm coretemp fusefs i915kms"
autofs_enable="YES"
dbus_enable="YES"
load_iichid_enable=YES

I also have some tunables in loader.conf.local
Code:
# for intel cards only
drm.i915.enable_rc6="7"
drm.i915.semaphores="1"
drm.i915.intel_iommu_enabled="1"

Did anything change with the newer version of xorg-server?
 
The problem was actually with polkit.
I recently upgraded to polkit 124, however, there was a more recent patch which wasn't on the repo.
I compiled from ports and installed polkit 124_1.
Now everything works as intended.

Code:
cd /usr/ports/sysutils/polkit && make reinstall clean
reboot
 
Back
Top