79350f79d8
Resolves: #2137584,#2138081,#2141979
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 03bb31bbb875e20da7ae37eb44e98d244823e0e7 Mon Sep 17 00:00:00 2001
|
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
Date: Thu, 3 Nov 2022 09:52:23 +0900
|
|
Subject: [PATCH] udev: add safe guard for setting by-id symlink
|
|
|
|
The ID_BUS property is necessary for creating by-id symlinks.
|
|
|
|
(cherry picked from commit 5286da064c97d2ac934cb301066aaa8605a3c8f9)
|
|
|
|
Related #2138081
|
|
---
|
|
rules.d/60-serial.rules | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/rules.d/60-serial.rules b/rules.d/60-serial.rules
|
|
index 2c1488e930..a0e66323a9 100644
|
|
--- a/rules.d/60-serial.rules
|
|
+++ b/rules.d/60-serial.rules
|
|
@@ -17,6 +17,7 @@ IMPORT{builtin}="path_id"
|
|
ENV{ID_PATH}=="?*", ENV{.ID_PORT}=="", SYMLINK+="serial/by-path/$env{ID_PATH}"
|
|
ENV{ID_PATH}=="?*", ENV{.ID_PORT}=="?*", SYMLINK+="serial/by-path/$env{ID_PATH}-port$env{.ID_PORT}"
|
|
|
|
+ENV{ID_BUS}=="", GOTO="serial_end"
|
|
ENV{ID_SERIAL}=="", GOTO="serial_end"
|
|
ENV{ID_USB_INTERFACE_NUM}=="", GOTO="serial_end"
|
|
ENV{.ID_PORT}=="", SYMLINK+="serial/by-id/$env{ID_BUS}-$env{ID_SERIAL}-if$env{ID_USB_INTERFACE_NUM}"
|