You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
7 years ago
|
From 2411be37e26457c5e6734dbf08feb4b8375c13a2 Mon Sep 17 00:00:00 2001
|
||
|
From: Michal Sekletar <msekleta@redhat.com>
|
||
|
Date: Mon, 22 Sep 2014 07:53:52 +0200
|
||
|
Subject: [PATCH] rules: add rule for naming Dell iDRAC USB Virtual NIC as
|
||
|
'idrac'
|
||
|
|
||
|
RHEL-only patch
|
||
|
|
||
|
Resolves: #1054477
|
||
|
---
|
||
|
Makefile.am | 3 ++-
|
||
|
rules/73-idrac.rules | 6 ++++++
|
||
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
||
|
create mode 100644 rules/73-idrac.rules
|
||
|
|
||
|
diff --git a/Makefile.am b/Makefile.am
|
||
|
index b0e4b5a42..9e64d6f98 100644
|
||
|
--- a/Makefile.am
|
||
|
+++ b/Makefile.am
|
||
|
@@ -3567,7 +3567,8 @@ dist_udevrules_DATA += \
|
||
|
rules/78-sound-card.rules \
|
||
|
rules/80-net-setup-link.rules \
|
||
|
rules/95-udev-late.rules \
|
||
|
- rules/40-redhat.rules
|
||
|
+ rules/40-redhat.rules \
|
||
|
+ rules/73-idrac.rules
|
||
|
|
||
|
nodist_udevrules_DATA += \
|
||
|
rules/99-systemd.rules
|
||
|
diff --git a/rules/73-idrac.rules b/rules/73-idrac.rules
|
||
|
new file mode 100644
|
||
|
index 000000000..d67fc425b
|
||
|
--- /dev/null
|
||
|
+++ b/rules/73-idrac.rules
|
||
|
@@ -0,0 +1,6 @@
|
||
|
+# do not edit this file, it will be overwritten on update
|
||
|
+
|
||
|
+# On Dell PowerEdge systems, the iDRAC7 and later support a USB Virtual NIC
|
||
|
+# with terminates in the iDRAC. Help identify this with 'idrac'
|
||
|
+
|
||
|
+ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", ATTRS{idVendor}=="413c", ATTRS{idProduct}=="a102", NAME="idrac"
|