%{!?_daemon_version:%global _daemon_version 6.1.0-17} %{!?_version:%global _version 1.14.7} %{!?_release:%global _release 3} # Disable RPATH since DisplayLinkManager contains this. # Fedora 35 enforces this check and will stop rpmbuild from # proceeding. %global __brp_check_rpaths %{nil} %global debug_package %{nil} # asahi-linux is kernel-16k %global _kernel_pagesize %(getconf PAGE_SIZE | awk '{print $1/1024}') %if 0%{?rhel} && 0%{?rhel} <= 7 %global kernel_pkg_name kernel-ml %elif 0%{?_kernel_pagesize} > 4 %global kernel_pkg_name kernel-%{_kernel_pagesize}k %else %global kernel_pkg_name kernel %endif %{?_github:%global _github_release .github_evdi} Name: displaylink Version: %{_version} Release: %{_release}%{?_github_release} Summary: DisplayLink VGA/HDMI driver for DL-6xxx, DL-5xxx, DL-41xx and DL-3xxx adapters License: GPLv2 and LGPLv2 and MIT and ASL 2.0 and Proprietary Source0: https://github.com/DisplayLink/evdi/archive/v%{version}.tar.gz Source1: displaylink-driver.service Source2: 99-displaylink.rules Source3: displaylink-sleep-extractor.sh # From https://www.synaptics.com/products/displaylink-graphics/downloads/ubuntu Source4: DisplayLink_USB_Graphics_Software_for_Ubuntu_%{_daemon_version}.zip Source5: 20-displaylink.conf Source6: 95-displaylink.preset Source7: %{name}.logrotate Source8: displaylink-udev-extractor.sh Source9: evdi.conf BuildRequires: gcc-c++ BuildRequires: libdrm-devel BuildRequires: make %if 0%{?fedora} < 30 || 0%{?rhel} BuildRequires: systemd %else BuildRequires: systemd-rpm-macros %endif %if 0%{?rhel} Requires: epel-release %endif Requires: dkms Requires: %{kernel_pkg_name} >= 4.15, %{kernel_pkg_name}-devel >= 4.15 Requires: make Requires: libusbx Requires: xorg-x11-server-Xorg >= 1.16 Conflicts: mutter < 3.32 Conflicts: xorg-x11-server-Xorg = 1.20.1 Provides: bundled(libevdi) = %{version} %description This adds support for HDMI/VGA adapters built upon the DisplayLink DL-7xxx, DL-6xxx, DL-5xxx, DL-41xx and DL-3xxx series of chipsets. This includes numerous docking stations, USB monitors, and USB adapters. %define logfile %{_localstatedir}/log/%{name}/%{name}.log %prep %setup -q -T -c %setup -q -T -D -a 4 chmod +x displaylink-driver-%{_daemon_version}.run ./displaylink-driver-%{_daemon_version}.run --noexec --keep --target displaylink-driver-%{_daemon_version} # This creates a displaylink-driver-$version subdirectory mkdir -p evdi-%{version} %setup -q -T -D -a 0 cd evdi-%{version} sed -i 's/\r//' README.md %build cd evdi-%{version}/library/ %make_build %install mkdir -p %{buildroot}%{_libexecdir}/%{name}/ \ %{buildroot}%{_prefix}/src/evdi-%{version}/ \ %{buildroot}%{_unitdir}/ \ %{buildroot}%{_prefix}/lib/systemd/system-preset/ \ %{buildroot}%{_prefix}/lib/systemd/system-sleep/ \ %{buildroot}%{_sysconfdir}/logrotate.d/ \ %{buildroot}%{_sysconfdir}/modprobe.d/ \ %{buildroot}%{_sysconfdir}/udev/rules.d/ \ %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/ \ %{buildroot}%{_localstatedir}/log/%{name}/ # Kernel driver sources pushd %{buildroot}%{_prefix}/src/evdi-%{version} ; \ cp -a $OLDPWD/evdi-%{version}/module/* . ; \ popd # Turn off weak modules symlink being added for dkms build of evdi echo "NO_WEAK_MODULES=yes" >> %{buildroot}%{_prefix}/src/evdi-%{version}/dkms.conf # Library cp -a evdi-%{version}/library/libevdi.so.%{version} %{buildroot}%{_libexecdir}/%{name}/ ln -sf %{_libexecdir}/%{name}/libevdi.so.%{version} %{buildroot}%{_libexecdir}/%{name}/libevdi.so # Copy over binaries in package # Don't copy libusb-1.0.so.0.2.0 it's already shipped by newer versions of libusbx # Don't copy libevdi.so, we compiled it from source cd displaylink-driver-%{_daemon_version} cp -a LICENSE ../ %ifarch aarch64 %global source_dir aarch64-linux-gnu %else %global source_dir x64-ubuntu-1604 %endif cp -a %{source_dir}/DisplayLinkManager %{buildroot}%{_libexecdir}/%{name}/ # Firmwares cp -a ella-dock-release.spkg firefly-monitor-release.spkg navarro-dock-release.spkg ridge-dock-release.spkg %{buildroot}%{_libexecdir}/%{name}/ # systemd/udev cp -a %{SOURCE1} %{buildroot}%{_unitdir}/ cp -a %{SOURCE2} %{buildroot}%{_sysconfdir}/udev/rules.d/ cp -a %{SOURCE5} %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/ cp -a %{SOURCE6} %{buildroot}%{_prefix}/lib/systemd/system-preset/ cp -a %{SOURCE7} %{buildroot}%{_sysconfdir}/logrotate.d/%{name} # evdi module options cp -a %{SOURCE9} %{buildroot}%{_sysconfdir}/modprobe.d/ # pm-util bash %{SOURCE3} service-installer.sh > %{buildroot}%{_prefix}/lib/systemd/system-sleep/displaylink.sh chmod +x %{buildroot}%{_prefix}/lib/systemd/system-sleep/displaylink.sh # udev trigger scripts bash %{SOURCE8} udev-installer.sh > %{buildroot}%{_libexecdir}/%{name}/udev.sh chmod +x %{buildroot}%{_libexecdir}/%{name}/udev.sh %post %systemd_post displaylink-driver.service %{_sbindir}/dkms add evdi/%{version} --rpm_safe_upgrade >> %{logfile} 2>&1 %{_sbindir}/dkms build evdi/%{version} >> %{logfile} 2>&1 %{_sbindir}/dkms install evdi/%{version} >> %{logfile} 2>&1 # Trigger udev if devices are connected %{_bindir}/grep -lw 17e9 /sys/bus/usb/devices/*/idVendor | while IFS= read -r device; do %{_bindir}/udevadm trigger --action=add "$(dirname "$device")" done %{_bindir}/systemctl start displaylink-driver.service %files %license LICENSE %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %{_unitdir}/displaylink-driver.service %{_prefix}/lib/systemd/system-preset/95-displaylink.preset %{_prefix}/lib/systemd/system-sleep/displaylink.sh %{_sysconfdir}/modprobe.d/evdi.conf %{_sysconfdir}/udev/rules.d/99-displaylink.rules %{_sysconfdir}/X11/xorg.conf.d/20-displaylink.conf %dir %{_prefix}/src/evdi-%{version} %{_prefix}/src/evdi-%{version}/Kconfig %{_prefix}/src/evdi-%{version}/LICENSE %{_prefix}/src/evdi-%{version}/Makefile %{_prefix}/src/evdi-%{version}/dkms.conf %{_prefix}/src/evdi-%{version}/dkms_install.sh %{_prefix}/src/evdi-%{version}/evdi_connector.c %{_prefix}/src/evdi-%{version}/evdi_cursor.c %{_prefix}/src/evdi-%{version}/evdi_cursor.h %{_prefix}/src/evdi-%{version}/evdi_debug.c %{_prefix}/src/evdi-%{version}/evdi_debug.h %{_prefix}/src/evdi-%{version}/evdi_drm.h %{_prefix}/src/evdi-%{version}/evdi_drm_drv.c %{_prefix}/src/evdi-%{version}/evdi_drm_drv.h %{_prefix}/src/evdi-%{version}/evdi_encoder.c %{_prefix}/src/evdi-%{version}/evdi_fb.c %{_prefix}/src/evdi-%{version}/evdi_gem.c %{_prefix}/src/evdi-%{version}/evdi_i2c.c %{_prefix}/src/evdi-%{version}/evdi_i2c.h %{_prefix}/src/evdi-%{version}/evdi_ioc32.c %{_prefix}/src/evdi-%{version}/evdi_modeset.c %{_prefix}/src/evdi-%{version}/evdi_painter.c %{_prefix}/src/evdi-%{version}/evdi_params.c %{_prefix}/src/evdi-%{version}/evdi_params.h %{_prefix}/src/evdi-%{version}/evdi_platform_dev.c %{_prefix}/src/evdi-%{version}/evdi_platform_dev.h %{_prefix}/src/evdi-%{version}/evdi_platform_drv.c %{_prefix}/src/evdi-%{version}/evdi_platform_drv.h %{_prefix}/src/evdi-%{version}/evdi_sysfs.c %{_prefix}/src/evdi-%{version}/evdi_sysfs.h %{_prefix}/src/evdi-%{version}/tests/.kunitconfig %{_prefix}/src/evdi-%{version}/tests/evdi_test.c %{_prefix}/src/evdi-%{version}/tests/evdi_test.h %{_prefix}/src/evdi-%{version}/tests/Makefile %{_prefix}/src/evdi-%{version}/tests/test_evdi_vt_switch.c %{_prefix}/src/evdi-%{version}/tests/evdi_fake_compositor.c %{_prefix}/src/evdi-%{version}/tests/evdi_fake_compositor.h %{_prefix}/src/evdi-%{version}/tests/evdi_fake_user_client.c %{_prefix}/src/evdi-%{version}/tests/evdi_fake_user_client.h # Exclude the tests directory #%exclude %{_prefix}/src/evdi-%{version}/tests/ %dir %{_libexecdir}/%{name} %{_libexecdir}/%{name}/DisplayLinkManager %{_libexecdir}/%{name}/ella-dock-release.spkg %{_libexecdir}/%{name}/firefly-monitor-release.spkg %{_libexecdir}/%{name}/libevdi.so %{_libexecdir}/%{name}/libevdi.so.%{version} %{_libexecdir}/%{name}/navarro-dock-release.spkg %{_libexecdir}/%{name}/ridge-dock-release.spkg %{_libexecdir}/%{name}/udev.sh %dir %{_localstatedir}/log/%{name}/ %preun %systemd_preun displaylink-driver.service %{_sbindir}/dkms remove evdi/%{version} --all --rpm_safe_upgrade >> %{logfile} %postun %systemd_postun_with_restart displaylink-driver.service %changelog * Thu Nov 07 2024 Crashdummy 1.14.7-3 - Bump the displaylink driver to 6.1.0-17 * Wed Sep 25 2024 Crashdummy 1.14.7-1 - Bump evdi to 1.14.7 to support Kernels 6.11 and 6.12 and some ubuntu bugs * Wed Aug 14 2024 Crashdummy 1.14.6-1 - Bump evdi to 1.14.6 to support Kernels 6.10.4 and 6.11 RCs * Wed Aug 14 2024 Michael L. Young 1.14.6-1 - Update to use the latest evdi release which fixes build issues on newer kernels * Thu May 16 2024 Michael L. Young 1.14.4-2 - Remove support for CentOS 7 which never really worked and it is EOL at end of June - Remove checks for i386 since we are only building x86_64 * Mon May 06 2024 Grzegorz Bialek 1.14.4-2 - Update to new DisplayLink 6.0.0 package - Remove unneeded patches for newer kernels - Add "target" option to displaylink-driver*.run file to avoid problem with folder name that differs from daemon_version * Thu Apr 11 2024 Michael L. Young 1.14.4-1 - Update evdi driver to 1.14.4 that has been released on Github to address unsafe use of strlen * Wed Apr 10 2024 Michael L. Young 1.14.3-1 - Update evdi driver to 1.14.3 that has been released on Github * Sat Mar 09 2024 Michael L. Young 1.14.2-1 - Update evdi driver to 1.14.2 that has been released on Github - Do not patch when using the Github released version of evdi * Sat Dec 23 2023 Michael L. Young 1.14.1-2 - Add patch from upstream for newer kernels - Add patch from upstream for newer EL8 and EL9 kernels. * Sat Aug 12 2023 Michael L. Young 1.14.1-1 - Update to new DisplayLink 5.8.0 package - Update to use new evdi 1.14.1 - Remove patches that were merged upstream into evdi 1.14.1 * Sat Jun 24 2023 Michael L. Young 1.13.1-2 - Minor update to a patch for EL8 builds * Thu Apr 20 2023 Michael L. Young 1.13.1-1 - Update to new DisplayLink 5.7.0 package - Update to use new evdi 1.13.1 module - Change file name where power management scripts are located within Displaylink installer for extraction * Mon Nov 28 2022 Michael L. Young 1.12.0-2 - Add patch for evdi to compile with newer EL 8.7 and EL 9.1 releases with the github release - Add patch for evdi to compile with newer kernels, EL 8.7 and EL 9.1 releases using the bundled evdi driver * Fri Oct 14 2022 Michael L. Young 1.12.0-2 - Remove EL8 and EL9 evdi patches that were merged upstream * Sat Aug 13 2022 Michael L. Young 1.12.0-1 - Update to use the new DisplayLink 5.6.1 package - Update to use evdi module 1.12.0 * Tue Jul 19 2022 Michael L. Young 1.11.0-1 - Add patches to support latest EL8 and EL9 systems - Update evdi version on Provides line * Sat May 21 2022 Grzegorz Bialek 1.11.0-1 - Update to use the newly released Displayink 5.6 package * Fri Mar 11 2022 Michael L. Young 1.10.1-1 - Update to use the newly released Displayink 5.5 package * Sun Mar 06 2022 Michael L. Young 1.10.1-1.beta - Update evdi version to 1.10.1 * Tue Mar 01 2022 Michael L. Young 1.10.0-1.beta - Update evdi version to 1.10.0 - Update Displaylink driver to 5.5-beta - Add new udev.sh trigger script - Add handling of newer libusb library for CentOS 7 - Change 'displaylink.service' to 'displaylink-driver.service' to match upstream - Update udev rules to match upstream - Add modprobe options for evdi * Wed Dec 29 2021 Michael L. Young 1.9.1-3 - Add patch to fix compile error on EL8 - Fix checking for defined macros * Mon Dec 27 2021 Michael L. Young 1.9.1-2 - Change 'unbundled' to 'github' as part of attempt to clarify which evdi driver is being used in the RPM that is produced. * Tue Oct 19 2021 Rodrigo Araujo 1.9.1-2 - Update driver version to 5.4.1-55.174 * Mon Apr 19 2021 Pavel Valena 1.9.1-1 - Enable spec to build cleanly using mock. * Mon Apr 19 2021 Michael L. Young 1.9.1-1 - Add a 'Provides' to indicate the bundled library in this package. - Add a 'Requires' for libusbx - Use Fedora short names for license field * Fri Apr 16 2021 Michael L. Young 1.9.1-1 - Updated reference to download url for the DisplayLink driver. It is now on synaptics site. * Tue Apr 06 2021 Michael L. Young 1.9.1-1 - Update to evdi driver version 1.9.1 - Update to Displaylink driver 5.4.0 * Thu Jan 14 2021 Michael L. Young 1.7.2-2 - Prevent DKMS from adding a symlink for weak modules on Fedora. See DKMS documentation. * Fri Dec 11 2020 Michael L. Young 1.7.2-1 - Update to evdi driver version 1.7.2 * Tue Dec 08 2020 Michael L. Young 1.7.2-1 - Add the requirement for epel if distro is RHEL based - Remove requirement for 'ml' kernel for RHEL distro greater than 7 * Mon Dec 07 2020 Michael L. Young 1.7.2-1 - Remove hard coded libevdi.so.1.7.0 reference in the files section * Mon Jun 22 2020 Michael L. Young 1.7.0-2 - Add 'make' as a requirement for installing the RPM since DKMS needs it to build the evdi module. * Sat May 30 2020 Mitya Eremeev 1.7.0-2 - fix typo in kernel package name - tested package in CentOS 8 * Mon May 11 2020 Michael L. Young 1.7.0-1 - Update to evdi driver version 1.7.0. - Update to Displaylink driver 5.3.1. - The minimum kernel supported in evdi is now 4.15. Adjusting spec to match. - Fix support for DL-6xxx devices. The firmware image was not being copied from the DisplayLink driver package. - Adjust how we use dkms inside the rpm to follow recommended way in documentation. - Switch spec to using macro for buildroot instead of variable for consistency. - Change hardcoded paths to rpm macros - List out files instead of using a wild card. This Will help catch potential issues if files are missing or changed with new version releases. - Use systemd scriplets for handling systemd unit file - Use systemd preset file to enable displaylink.service by default - Remove calls to enable dkms service since this is already enabled by policy on Fedora. - Add logrotate config file * Thu Apr 16 2020 Michael L. Young 1.6.4-3 - Remove patches that are no longer needed. This restores the ability to build against rawhide. * Fri Feb 07 2020 Michael L. Young 1.6.4-2 - Apply patches contributed by abucodonosor and severach on GitHub to get evdi working on kernel 5.4. See https://github.com/DisplayLink/evdi/issues/172#issuecomment-561394805 See https://github.com/DisplayLink/evdi/issues/172#issuecomment-561964789 * Fri Jan 10 2020 Alan Halama 1.6.4-1 - Update the evdi driver to 1.6.4 * Tue Nov 05 2019 Michael L. Young 1.6.3-1 - Update the evdi driver to 1.6.3 * Mon Aug 19 2019 Michael L. Young 1.6.2-2 - Update Displaylink driver to 5.2.14 * Mon Jul 08 2019 Michael L. Young 1.6.2-1 - Update evdi to 1.6.2 * Wed May 08 2019 Michael L. Young 1.6.1-1 - Update evdi to 1.6.1 * Mon Mar 25 2019 Peter Janes 1.6.0-2 - Add trigger on kernel postinstall to compile evdi via dkms for the new version * Tue Feb 19 2019 Michael L. Young 1.6.0-1 - Update DisplayLink Manager to 5.1.26 - Update evdi to 1.6.0 * Tue Dec 11 2018 Orsiris de Jong 1.5.1-2 - Add make and gcc-c++ build requirements * Mon Nov 05 2018 okay_awright 1.5.1-2 - Removed workaround for xorg-server 1.20.1 and glamorgl acceleration with evdi now that fedora ships xorg-server 1.20.3 which fixes the problem * Tue Oct 30 2018 okay_awright 1.5.1 - Update evdi version to 1.5.1 - Bump downloaded version to 4.4.24 - Workaround for xorg-server > 1.19 and glamorgl acceleration with evdi: https://github.com/DisplayLink/evdi/issues/133#issuecomment-428573850 * Wed Jan 17 2018 fgiff 1.5.0-2 - Bump downloaded version to 4.1.9 * Tue Oct 10 2017 Alan Halama 1.5 - Update evdi version to 1.5 - Bump downloaded version to 1.4 * Thu Aug 17 2017 Kahlil Hodgson 1.1.4-5 - Restart displaylink service around dkms rebuild - Make setup quiet as per fedora/redhat guidelines * Wed Jul 26 2017 Kahlil Hodgson 1.1.4-4 - Give systemd sleep script exec permissions * Tue Jul 11 2017 Kahlil Hodgson 1.1.4-3 - Disable PageFlip if xorg is using modesetting driver * Sat Jul 8 2017 Alan Halama 1.3.54 - Bump downloaded version to 1.3.54 * Thu Jun 8 2017 Alan Halama 1.4.1 - Update evdi version to 1.4.1 * Sun Feb 19 2017 Richard Hofer 1.3.52 - Bump downloaded version to 1.3.52 - Note support for DL-6xxx devices * Tue Oct 11 2016 Aaron Aichlmayr 1.2.64 - Bump downloaded version to 1.2.64 * Tue Oct 04 2016 Victor Rehorst 1.2.55-2 - Fix systemd-sleep support for DisplayLink driver 1.2.58 (which is now current for v1.2) * Thu Sep 22 2016 Santiago Saavedra 1.2.55-1 - Bump upstream version for both evdi and DisplayLink driver * Mon May 30 2016 Santiago Saavedra 1.1.65-5 - Add systemd-sleep support * Tue May 24 2016 Bastien Nocera 1.1.65-4 - Really copy the libevdi.so from the sources * Sun May 22 2016 Bastien Nocera 1.1.65-3 - Add missing libdrm-devel BR * Tue May 17 2016 Bastien Nocera 1.1.65-2 - Update to daemon 1.1.62 (with a zip file called 1.1.68, sigh) * Tue May 17 2016 Bastien Nocera 1.1.65-1 - Update to 1.1.65 * Tue May 10 2016 Bastien Nocera 1.1.61-1 - Update to 1.1.61 * Thu Apr 28 2016 Bastien Nocera 1.0.453-1 - Update to 1.0.453 - Compile the library from source * Mon Dec 14 2015 Bastien Nocera 1.0.335-1 - Update to 1.0.335 * Mon Sep 07 2015 Bastien Nocera 1.0.138-4 - Disable debuginfo subpackage creation * Mon Sep 07 2015 Bastien Nocera 1.0.138-3 - Create RPM directly from downloaded zip file - Add LICENSE - Create i386 RPM * Sun Sep 6 2015 Eric Nothen - 1.0.138-2 - Modified installed kernels detection section to be more precise * Wed Sep 2 2015 Eric Nothen - 1.0.138-1 - Updated driver to version 1.0.138, as published by DisplayLink * Wed Aug 19 2015 Eric Nothen - 1.0.68-2 - Changed udev rule to detect devices based on vendor rather than model * Thu Aug 13 2015 Eric Nothen - 1.0.68-1 - Initial package based on module version 1.0.68 available at http://www.displaylink.com/downloads/ubuntu.php