/lib/udev/rules.d/z60_madwimax.rules is in madwimax 0.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | # udev rules file for madwimax supported devices
SUBSYSTEM!="usb_device", GOTO="madwimax_rules_end"
ACTION!="add", GOTO="madwimax_rules_end"
# run madwimax
ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="6761", RUN+="/sbin/madwimax -df --exact-device=$attr{device/busnum}/$attr{device/devnum}"
ATTRS{idVendor}=="04e9", ATTRS{idProduct}=="6761", RUN+="/sbin/madwimax -df --exact-device=$attr{device/busnum}/$attr{device/devnum}"
ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="6731", RUN+="/sbin/madwimax -d --exact-device=$attr{device/busnum}/$attr{device/devnum}"
ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="6780", RUN+="/sbin/madwimax -df --exact-device=$attr{device/busnum}/$attr{device/devnum}"
LABEL="madwimax_rules_end"
|