Rocky Linux 9.7

Rocky 9.7 is a out, so is Rocky 10.1, my bandwidth is being used to download them as I post.

I was able to patch all but one of my boxes (it is doing a hard drive burn in) so that was good. But frigate acted up again. Here is what I did to fix it.

  • Uninstalled the current package
    dnf erase gasket-dkms
  • Made sure there were no gasket files in /usr/src
  • Installed the latest (gasket-0.0.git.259.0a0de819)
    dnf install gasket-dkms
  • Added the RHEL 9, 7 release number (Old Post)
    vi gasket_interrupt.c +161
    #if LINUX_VERSION_CODE >= KERNEL_VERSION(6,8,0) #if LINUX_VERSION_CODE >= KERNEL_VERSION(6,8,0) || \ (defined RHEL_RELEASE_CODE && RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(9, 7))
  • Then changed gasket core
    vi gasket_core.c +1846
    -#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 4, 0)
    internal->class = class_create(driver_desc->module, driver_desc->name);
    -#else
    internal->class = class_create(driver_desc->name);
    with
    internal->class = class_create(driver_desc->name);
  • Then
    dkms autoinstall
    modprobe apex
    modprobe gasket

Seems to have worked

Lost some decent weight, trending back down, But I think it is water

Weight: 320.4

This entry was posted in Coding, New Toys, Technical, Training, Weigh In. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.