46 lines
1.5 KiB
Diff
46 lines
1.5 KiB
Diff
From 2eba1b80553e02054f649790b3b3dd426399b351 Mon Sep 17 00:00:00 2001
|
|
From: "Anthony G. Basile" <blueness@gentoo.org>
|
|
Date: Tue, 2 Jun 2015 10:09:25 -0400
|
|
Subject: [PATCH] 80-net-name-slot.rules: restored for issue #117.
|
|
|
|
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
|
|
---
|
|
rules/80-net-name-slot.rules | 14 ++++++++++++++
|
|
rules/Makefile.am | 3 ++-
|
|
2 files changed, 16 insertions(+), 1 deletion(-)
|
|
create mode 100644 rules/80-net-name-slot.rules
|
|
|
|
diff --git rules/80-net-name-slot.rules rules/80-net-name-slot.rules
|
|
new file mode 100644
|
|
index 0000000..c5f1b38
|
|
--- /dev/null
|
|
+++ rules/80-net-name-slot.rules
|
|
@@ -0,0 +1,14 @@
|
|
+# do not edit this file, it will be overwritten on update
|
|
+
|
|
+ACTION!="add", GOTO="net_name_slot_end"
|
|
+SUBSYSTEM!="net", GOTO="net_name_slot_end"
|
|
+NAME!="", GOTO="net_name_slot_end"
|
|
+
|
|
+IMPORT{cmdline}="net.ifnames"
|
|
+ENV{net.ifnames}=="0", GOTO="net_name_slot_end"
|
|
+
|
|
+NAME=="", ENV{ID_NET_NAME_ONBOARD}!="", NAME="$env{ID_NET_NAME_ONBOARD}"
|
|
+NAME=="", ENV{ID_NET_NAME_SLOT}!="", NAME="$env{ID_NET_NAME_SLOT}"
|
|
+NAME=="", ENV{ID_NET_NAME_PATH}!="", NAME="$env{ID_NET_NAME_PATH}"
|
|
+
|
|
+LABEL="net_name_slot_end"
|
|
diff --git rules/Makefile.am rules/Makefile.am
|
|
index 7e0927f..624a434 100644
|
|
--- rules/Makefile.am
|
|
+++ rules/Makefile.am
|
|
@@ -18,7 +18,8 @@ dist_udevrules_DATA = \
|
|
70-touchpad.rules \
|
|
75-net-description.rules \
|
|
75-probe_mtd.rules \
|
|
- 78-sound-card.rules
|
|
+ 78-sound-card.rules \
|
|
+ 80-net-name-slot.rules
|
|
|
|
if HAVE_BLKID
|
|
dist_udevrules_DATA += \
|