From: Kay Sievers Date: Sun, 6 Jan 2013 15:17:33 +0000 (+0100) Subject: udev: enable persistent network device naming X-Git-Tag: v197~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=394e2938ff92c9bfc5b9e25c92c4df0fdea57c83;p=thirdparty%2Fsystemd.git udev: enable persistent network device naming --- diff --git a/Makefile.am b/Makefile.am index 74a432930b0..3a50f4a98c5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1838,6 +1838,7 @@ dist_udevrules_DATA += \ rules/75-net-description.rules \ rules/75-tty-description.rules \ rules/78-sound-card.rules \ + rules/80-net-name-slot.rules \ rules/95-udev-late.rules if HAVE_KMOD diff --git a/rules/80-net-name-slot.rules b/rules/80-net-name-slot.rules new file mode 100644 index 00000000000..278e77f4a12 --- /dev/null +++ b/rules/80-net-name-slot.rules @@ -0,0 +1,11 @@ +# do not edit this file, it will be overwritten on update + +ACTION=="remove", GOTO="net_name_slot_end" +SUBSYSTEM!="net", GOTO="net_name_slot_end" +NAME!="", GOTO="net_name_slot_end" + +ENV{ID_NET_NAME_ONBOARD}!="", NAME="$env{ID_NET_NAME_ONBOARD}" +ENV{ID_NET_NAME_SLOT}!="", NAME="$env{ID_NET_NAME_SLOT}" +ENV{ID_NET_NAME_PATH}!="", NAME="$env{ID_NET_NAME_PATH}" + +LABEL="net_name_slot_end"