Bug 214277

Summary: Remove /etc/udev/rules.d/51-hotplug.rules
Product: [Fedora] Fedora Reporter: Bill Nottingham <notting>
Component: udevAssignee: Harald Hoyer <harald>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: rvokal
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-11-08 07:15:00 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Bill Nottingham 2006-11-06 21:03:24 UTC
Description of problem:

Who needs legacy support. Upgrade or die!

Version-Release number of selected component (if applicable):

udev-095-14

Comment 1 Patrick C. F. Ernzer 2007-06-21 14:54:46 UTC
Just a note for those that did need this functionality (in my case to have
/etc/dev.d/umts/umts.dev called), just add
  RUN+="/lib/udev/udev_run_devd"
to the udev rule that makes your device

e.g: # cat /etc/udev/rules.d/48-umts.rules 
# Vodafone UMTS card
# Option Wireless Technology
# Model 129
# http://www.pharscape.org/index.php?option=content&task=view&id=28 says
#  /dev/ttyUSB0 should be used for your ppp data connections.
#  /dev/ttyUSB2 is the device to use for GSM related tasks such as SMS and
network checks.
#  Note: /dev/ttyUSB1 is not used at all.
#
# see also /etc/dev.d/umts/umts.dev where we call something to enter the PIN
# not using SYMLINK means 2 things:
#  - we will not execute for other sctipts (i.e. Palm) as we would if we had SYMLINK
#    and the script in /etc/dev.d/tty
#  - there wil be no ttyUSB0 (no biggie but it might confuse users reading FAQs)
#
SUBSYSTEMS=="usb", DRIVERS=="option", ATTRS{interface}=="Data Interface",
ATTRS{bInterfaceNumber}=="00", NAME="umts" RUN+="/lib/udev/udev_run_devd"
SUBSYSTEMS=="usb", DRIVERS=="option", ATTRS{interface}=="Data Interface",
ATTRS{bInterfaceNumber}=="01", OPTIONS="ignore_device"
SUBSYSTEMS=="usb", DRIVERS=="option", ATTRS{interface}=="Data Interface",
ATTRS{bInterfaceNumber}=="02", NAME="gsm"