View Single Post
Old 03-12-2018, 12:27 AM   #9
mshaffer
Junior Member
 
Join Date: Feb 2018
Posts: 8
Default

Quote:
Originally Posted by mlukaszek View Post
You don't need any other utilities. udl is a kernel space driver for DL-1x5 that does not need anything extra in userspace to expose a /dev/dri/cardX (DRM) node that can be then used by X modesetting driver or anything else using libdrm.

Cheers,
Michal
Hi,

I am trying to follow your limited instructions. The link you provided has a lot of broken links.

Create Rule
Code:
#vim /etc/udev/rules.d/60-displaylink.rules
# DisplayLink devices always have the active configuration on configuration #1
SYSFS{idVendor}=="17e9", SYSFS{bConfigurationValue}=="2", RUN+="/usr/bin/dlconfig /sys%p/bConfigurationValue"
Rule drops device usb-storage as position #1 ???
Code:
vim /usr/bin/dlconfig
#! /bin/bash
if [ -e /sys$1/device/bConfigurationValue ]; then
    echo 1 > /sys$1/device/bConfigurationValue
fi;

if [ -e /sys$1/bConfigurationValue ]; then
    echo 1 > /sys$1/bConfigurationValue
fi;
Restart... udev rules
Code:
udevadm control --reload-rules && udevadm trigger
So now what?

Do I need dlm? how to start/stop?

will it start show up in xrandr ...

I am looking for a step-by-step solution if you can provide it...

Thanks.
mshaffer is offline   Reply With Quote