meta-arago.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
@ 2024-02-08 18:37 Aniket Limaye
  2024-02-08 19:28 ` Andrew Davis
  0 siblings, 1 reply; 9+ messages in thread
From: Aniket Limaye @ 2024-02-08 18:37 UTC (permalink / raw)
  To: meta-arago; +Cc: reatmon, Aniket Limaye, Bhavya Kapoor

When multiple CAN's are present, then names that are getting assigned
change after every boot even after providing alias in the device
tree.
So add udev rules to specify the interface name to use for
each mcan device, to make it persistent across reboots.

Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
Signed-off-by: Aniket Limaye <a-limaye@ti.com>
---
v4: 
    - Reformat patch to avoid repeated code for k3 devices
    - Add udev rules for dra7xx and ti33x too, as suggested
    - Still keeping separate files per platform to avoid potential
      confusion created by merging all the rules into one file
v3: Fix typos in the filename being installed in v2
v2:
    - Switch to udev rules instead of systemd network links, as per
      feedback from v1: https://lists.yoctoproject.org/g/meta-arago/message/15104
    - Also, extend to Sitara devices as well
---
 .../systemd/systemd/37-can-am62.rules         |  4 ++
 .../systemd/systemd/37-can-dra7.rules         |  2 +
 .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
 .../systemd/systemd/37-can-ti33x.rules        |  2 +
 .../recipes-core/systemd/systemd_%.bbappend   | 37 +++++++++++++++++++
 5 files changed, 65 insertions(+)
 create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
 create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
 create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
 create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules

diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
new file mode 100644
index 00000000..59dc8075
--- /dev/null
+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
@@ -0,0 +1,4 @@
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can", NAME="mcu_mcan0"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can", NAME="mcu_mcan1"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can", NAME="main_mcan0"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can", NAME="main_mcan1"
diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
new file mode 100644
index 00000000..3b14150d
--- /dev/null
+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
@@ -0,0 +1,2 @@
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can", NAME="main_dcan1"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can", NAME="main_dcan2"
diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
new file mode 100644
index 00000000..f2804ecd
--- /dev/null
+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
@@ -0,0 +1,20 @@
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can", NAME="mcu_mcan0"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can", NAME="mcu_mcan1"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can", NAME="main_mcan0"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can", NAME="main_mcan1"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can", NAME="main_mcan2"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can", NAME="main_mcan3"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can", NAME="main_mcan4"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can", NAME="main_mcan5"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can", NAME="main_mcan6"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can", NAME="main_mcan7"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can", NAME="main_mcan8"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can", NAME="main_mcan9"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can", NAME="main_mcan10"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can", NAME="main_mcan11"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can", NAME="main_mcan12"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can", NAME="main_mcan13"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can", NAME="main_mcan14"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can", NAME="main_mcan15"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can", NAME="main_mcan16"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can", NAME="main_mcan17"
diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
new file mode 100644
index 00000000..62d650fe
--- /dev/null
+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
@@ -0,0 +1,2 @@
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can", NAME="main_dcan0"
+SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can", NAME="main_dcan1"
diff --git a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
index f38606f2..f9919708 100644
--- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
+++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
@@ -2,6 +2,21 @@ PR:append = ".arago7"
 
 FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
 
+CAN_RULES_SRC = ""
+CAN_RULES_SRC:j721e = "37-can-j7.rules"
+CAN_RULES_SRC:j7200 = "37-can-j7.rules"
+CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
+CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
+CAN_RULES_SRC:am65xx = "37-can-j7.rules"
+CAN_RULES_SRC:am62xx = "37-can-am62.rules"
+CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
+CAN_RULES_SRC:am62axx = "37-can-am62.rules"
+CAN_RULES_SRC:am64xx = "37-can-am62.rules"
+CAN_RULES_SRC:j722s = "37-can-am62.rules"
+CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
+CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
+CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
+
 SRC_URI:append = " \
     file://local.rules \
     file://usb1-rules.sh \
@@ -14,6 +29,10 @@ SRC_URI:append = " \
     file://timesyncd.conf \
 "
 
+SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
+SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
+SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
+
 do_install:append() {
     install -d ${D}${sysconfdir}/udev/rules.d/
     install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/
@@ -43,3 +62,21 @@ do_install:append() {
     install -d ${D}${sysconfdir}/systemd/
     install -m 0644 ${WORKDIR}/timesyncd.conf ${D}${sysconfdir}/systemd/
 }
+
+do_install:append:k3() {
+    install -d ${D}${libdir}/udev/rules.d
+    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
+}
+
+do_install:append:dra7xx() {
+    install -d ${D}${libdir}/udev/rules.d
+    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
+}
+
+do_install:append:ti33x() {
+    install -d ${D}${libdir}/udev/rules.d
+    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
+}
+
+FILES:udev += "${CAN_RULES_TGT}"
+
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
  2024-02-08 18:37 [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices Aniket Limaye
@ 2024-02-08 19:28 ` Andrew Davis
  2024-02-09  5:16   ` Limaye, Aniket
  2024-02-13 17:40   ` Denys Dmytriyenko
  0 siblings, 2 replies; 9+ messages in thread
From: Andrew Davis @ 2024-02-08 19:28 UTC (permalink / raw)
  To: a-limaye, meta-arago; +Cc: reatmon, Bhavya Kapoor

On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org wrote:
> When multiple CAN's are present, then names that are getting assigned
> change after every boot even after providing alias in the device
> tree.
> So add udev rules to specify the interface name to use for
> each mcan device, to make it persistent across reboots.
> 
> Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
> Signed-off-by: Aniket Limaye <a-limaye@ti.com>
> ---
> v4:
>      - Reformat patch to avoid repeated code for k3 devices
>      - Add udev rules for dra7xx and ti33x too, as suggested
>      - Still keeping separate files per platform to avoid potential
>        confusion created by merging all the rules into one file

You can keep the rules in separate files, but you need to install
them all unconditionally for all machines. Otherwise this package
becomes machine specific, which we should avoid.

Andrew

> v3: Fix typos in the filename being installed in v2
> v2:
>      - Switch to udev rules instead of systemd network links, as per
>        feedback from v1: https://lists.yoctoproject.org/g/meta-arago/message/15104
>      - Also, extend to Sitara devices as well
> ---
>   .../systemd/systemd/37-can-am62.rules         |  4 ++
>   .../systemd/systemd/37-can-dra7.rules         |  2 +
>   .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
>   .../systemd/systemd/37-can-ti33x.rules        |  2 +
>   .../recipes-core/systemd/systemd_%.bbappend   | 37 +++++++++++++++++++
>   5 files changed, 65 insertions(+)
>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> 
> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> new file mode 100644
> index 00000000..59dc8075
> --- /dev/null
> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> @@ -0,0 +1,4 @@
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can", NAME="mcu_mcan0"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can", NAME="mcu_mcan1"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can", NAME="main_mcan0"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can", NAME="main_mcan1"
> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> new file mode 100644
> index 00000000..3b14150d
> --- /dev/null
> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> @@ -0,0 +1,2 @@
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can", NAME="main_dcan1"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can", NAME="main_dcan2"
> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> new file mode 100644
> index 00000000..f2804ecd
> --- /dev/null
> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> @@ -0,0 +1,20 @@
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can", NAME="mcu_mcan0"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can", NAME="mcu_mcan1"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can", NAME="main_mcan0"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can", NAME="main_mcan1"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can", NAME="main_mcan2"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can", NAME="main_mcan3"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can", NAME="main_mcan4"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can", NAME="main_mcan5"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can", NAME="main_mcan6"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can", NAME="main_mcan7"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can", NAME="main_mcan8"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can", NAME="main_mcan9"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can", NAME="main_mcan10"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can", NAME="main_mcan11"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can", NAME="main_mcan12"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can", NAME="main_mcan13"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can", NAME="main_mcan14"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can", NAME="main_mcan15"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can", NAME="main_mcan16"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can", NAME="main_mcan17"
> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> new file mode 100644
> index 00000000..62d650fe
> --- /dev/null
> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> @@ -0,0 +1,2 @@
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can", NAME="main_dcan0"
> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can", NAME="main_dcan1"
> diff --git a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> index f38606f2..f9919708 100644
> --- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> +++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> @@ -2,6 +2,21 @@ PR:append = ".arago7"
>   
>   FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
>   
> +CAN_RULES_SRC = ""
> +CAN_RULES_SRC:j721e = "37-can-j7.rules"
> +CAN_RULES_SRC:j7200 = "37-can-j7.rules"
> +CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
> +CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
> +CAN_RULES_SRC:am65xx = "37-can-j7.rules"
> +CAN_RULES_SRC:am62xx = "37-can-am62.rules"
> +CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
> +CAN_RULES_SRC:am62axx = "37-can-am62.rules"
> +CAN_RULES_SRC:am64xx = "37-can-am62.rules"
> +CAN_RULES_SRC:j722s = "37-can-am62.rules"
> +CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
> +CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
> +CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
> +
>   SRC_URI:append = " \
>       file://local.rules \
>       file://usb1-rules.sh \
> @@ -14,6 +29,10 @@ SRC_URI:append = " \
>       file://timesyncd.conf \
>   "
>   
> +SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
> +SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
> +SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
> +
>   do_install:append() {
>       install -d ${D}${sysconfdir}/udev/rules.d/
>       install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/
> @@ -43,3 +62,21 @@ do_install:append() {
>       install -d ${D}${sysconfdir}/systemd/
>       install -m 0644 ${WORKDIR}/timesyncd.conf ${D}${sysconfdir}/systemd/
>   }
> +
> +do_install:append:k3() {
> +    install -d ${D}${libdir}/udev/rules.d
> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> +}
> +
> +do_install:append:dra7xx() {
> +    install -d ${D}${libdir}/udev/rules.d
> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> +}
> +
> +do_install:append:ti33x() {
> +    install -d ${D}${libdir}/udev/rules.d
> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> +}
> +
> +FILES:udev += "${CAN_RULES_TGT}"
> +


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
  2024-02-08 19:28 ` Andrew Davis
@ 2024-02-09  5:16   ` Limaye, Aniket
  2024-02-13 17:40   ` Denys Dmytriyenko
  1 sibling, 0 replies; 9+ messages in thread
From: Limaye, Aniket @ 2024-02-09  5:16 UTC (permalink / raw)
  To: Andrew Davis, meta-arago; +Cc: reatmon, Bhavya Kapoor


On 2/9/2024 12:58 AM, Andrew Davis wrote:
> On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org wrote:
>> When multiple CAN's are present, then names that are getting assigned
>> change after every boot even after providing alias in the device
>> tree.
>> So add udev rules to specify the interface name to use for
>> each mcan device, to make it persistent across reboots.
>>
>> Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
>> Signed-off-by: Aniket Limaye <a-limaye@ti.com>
>> ---
>> v4:
>>      - Reformat patch to avoid repeated code for k3 devices
>>      - Add udev rules for dra7xx and ti33x too, as suggested
>>      - Still keeping separate files per platform to avoid potential
>>        confusion created by merging all the rules into one file
>
> You can keep the rules in separate files, but you need to install
> them all unconditionally for all machines. Otherwise this package
> becomes machine specific, which we should avoid.
>
> Andrew

Ahhh I misunderstood earlier then.... Yeah that makes sense.
Sending a v5...

Aniket

>
>> v3: Fix typos in the filename being installed in v2
>> v2:
>>      - Switch to udev rules instead of systemd network links, as per
>>        feedback from v1: 
>> https://lists.yoctoproject.org/g/meta-arago/message/15104
>>      - Also, extend to Sitara devices as well
>> ---
>>   .../systemd/systemd/37-can-am62.rules         |  4 ++
>>   .../systemd/systemd/37-can-dra7.rules         |  2 +
>>   .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
>>   .../systemd/systemd/37-can-ti33x.rules        |  2 +
>>   .../recipes-core/systemd/systemd_%.bbappend   | 37 +++++++++++++++++++
>>   5 files changed, 65 insertions(+)
>>   create mode 100644 
>> meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>   create mode 100644 
>> meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>   create mode 100644 
>> meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>   create mode 100644 
>> meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>
>> diff --git 
>> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules 
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>> new file mode 100644
>> index 00000000..59dc8075
>> --- /dev/null
>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>> @@ -0,0 +1,4 @@
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can", 
>> NAME="mcu_mcan0"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can", 
>> NAME="mcu_mcan1"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can", 
>> NAME="main_mcan0"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can", 
>> NAME="main_mcan1"
>> diff --git 
>> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules 
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>> new file mode 100644
>> index 00000000..3b14150d
>> --- /dev/null
>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>> @@ -0,0 +1,2 @@
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can", 
>> NAME="main_dcan1"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can", 
>> NAME="main_dcan2"
>> diff --git 
>> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules 
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>> new file mode 100644
>> index 00000000..f2804ecd
>> --- /dev/null
>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>> @@ -0,0 +1,20 @@
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can", 
>> NAME="mcu_mcan0"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can", 
>> NAME="mcu_mcan1"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can", 
>> NAME="main_mcan0"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can", 
>> NAME="main_mcan1"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can", 
>> NAME="main_mcan2"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can", 
>> NAME="main_mcan3"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can", 
>> NAME="main_mcan4"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can", 
>> NAME="main_mcan5"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can", 
>> NAME="main_mcan6"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can", 
>> NAME="main_mcan7"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can", 
>> NAME="main_mcan8"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can", 
>> NAME="main_mcan9"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can", 
>> NAME="main_mcan10"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can", 
>> NAME="main_mcan11"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can", 
>> NAME="main_mcan12"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can", 
>> NAME="main_mcan13"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can", 
>> NAME="main_mcan14"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can", 
>> NAME="main_mcan15"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can", 
>> NAME="main_mcan16"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can", 
>> NAME="main_mcan17"
>> diff --git 
>> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules 
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>> new file mode 100644
>> index 00000000..62d650fe
>> --- /dev/null
>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>> @@ -0,0 +1,2 @@
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can", 
>> NAME="main_dcan0"
>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can", 
>> NAME="main_dcan1"
>> diff --git 
>> a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend 
>> b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>> index f38606f2..f9919708 100644
>> --- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>> +++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>> @@ -2,6 +2,21 @@ PR:append = ".arago7"
>>     FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
>>   +CAN_RULES_SRC = ""
>> +CAN_RULES_SRC:j721e = "37-can-j7.rules"
>> +CAN_RULES_SRC:j7200 = "37-can-j7.rules"
>> +CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
>> +CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
>> +CAN_RULES_SRC:am65xx = "37-can-j7.rules"
>> +CAN_RULES_SRC:am62xx = "37-can-am62.rules"
>> +CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
>> +CAN_RULES_SRC:am62axx = "37-can-am62.rules"
>> +CAN_RULES_SRC:am64xx = "37-can-am62.rules"
>> +CAN_RULES_SRC:j722s = "37-can-am62.rules"
>> +CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
>> +CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
>> +CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
>> +
>>   SRC_URI:append = " \
>>       file://local.rules \
>>       file://usb1-rules.sh \
>> @@ -14,6 +29,10 @@ SRC_URI:append = " \
>>       file://timesyncd.conf \
>>   "
>>   +SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
>> +SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
>> +SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
>> +
>>   do_install:append() {
>>       install -d ${D}${sysconfdir}/udev/rules.d/
>>       install -m 0644 ${WORKDIR}/local.rules 
>> ${D}${sysconfdir}/udev/rules.d/
>> @@ -43,3 +62,21 @@ do_install:append() {
>>       install -d ${D}${sysconfdir}/systemd/
>>       install -m 0644 ${WORKDIR}/timesyncd.conf 
>> ${D}${sysconfdir}/systemd/
>>   }
>> +
>> +do_install:append:k3() {
>> +    install -d ${D}${libdir}/udev/rules.d
>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
>> +}
>> +
>> +do_install:append:dra7xx() {
>> +    install -d ${D}${libdir}/udev/rules.d
>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
>> +}
>> +
>> +do_install:append:ti33x() {
>> +    install -d ${D}${libdir}/udev/rules.d
>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
>> +}
>> +
>> +FILES:udev += "${CAN_RULES_TGT}"
>> +


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
  2024-02-08 19:28 ` Andrew Davis
  2024-02-09  5:16   ` Limaye, Aniket
@ 2024-02-13 17:40   ` Denys Dmytriyenko
  2024-02-16  8:14     ` Limaye, Aniket
  1 sibling, 1 reply; 9+ messages in thread
From: Denys Dmytriyenko @ 2024-02-13 17:40 UTC (permalink / raw)
  To: afd; +Cc: a-limaye, meta-arago, reatmon, Bhavya Kapoor

BTW, what about sysvinit support?


On Thu, Feb 08, 2024 at 01:28:47PM -0600, Andrew Davis via lists.yoctoproject.org wrote:
> On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org wrote:
> >When multiple CAN's are present, then names that are getting assigned
> >change after every boot even after providing alias in the device
> >tree.
> >So add udev rules to specify the interface name to use for
> >each mcan device, to make it persistent across reboots.
> >
> >Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
> >Signed-off-by: Aniket Limaye <a-limaye@ti.com>
> >---
> >v4:
> >     - Reformat patch to avoid repeated code for k3 devices
> >     - Add udev rules for dra7xx and ti33x too, as suggested
> >     - Still keeping separate files per platform to avoid potential
> >       confusion created by merging all the rules into one file
> 
> You can keep the rules in separate files, but you need to install
> them all unconditionally for all machines. Otherwise this package
> becomes machine specific, which we should avoid.
> 
> Andrew
> 
> >v3: Fix typos in the filename being installed in v2
> >v2:
> >     - Switch to udev rules instead of systemd network links, as per
> >       feedback from v1: https://lists.yoctoproject.org/g/meta-arago/message/15104
> >     - Also, extend to Sitara devices as well
> >---
> >  .../systemd/systemd/37-can-am62.rules         |  4 ++
> >  .../systemd/systemd/37-can-dra7.rules         |  2 +
> >  .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
> >  .../systemd/systemd/37-can-ti33x.rules        |  2 +
> >  .../recipes-core/systemd/systemd_%.bbappend   | 37 +++++++++++++++++++
> >  5 files changed, 65 insertions(+)
> >  create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> >  create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> >  create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> >  create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> >
> >diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> >new file mode 100644
> >index 00000000..59dc8075
> >--- /dev/null
> >+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> >@@ -0,0 +1,4 @@
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can", NAME="mcu_mcan0"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can", NAME="mcu_mcan1"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can", NAME="main_mcan0"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can", NAME="main_mcan1"
> >diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> >new file mode 100644
> >index 00000000..3b14150d
> >--- /dev/null
> >+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> >@@ -0,0 +1,2 @@
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can", NAME="main_dcan1"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can", NAME="main_dcan2"
> >diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> >new file mode 100644
> >index 00000000..f2804ecd
> >--- /dev/null
> >+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> >@@ -0,0 +1,20 @@
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can", NAME="mcu_mcan0"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can", NAME="mcu_mcan1"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can", NAME="main_mcan0"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can", NAME="main_mcan1"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can", NAME="main_mcan2"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can", NAME="main_mcan3"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can", NAME="main_mcan4"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can", NAME="main_mcan5"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can", NAME="main_mcan6"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can", NAME="main_mcan7"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can", NAME="main_mcan8"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can", NAME="main_mcan9"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can", NAME="main_mcan10"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can", NAME="main_mcan11"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can", NAME="main_mcan12"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can", NAME="main_mcan13"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can", NAME="main_mcan14"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can", NAME="main_mcan15"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can", NAME="main_mcan16"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can", NAME="main_mcan17"
> >diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> >new file mode 100644
> >index 00000000..62d650fe
> >--- /dev/null
> >+++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> >@@ -0,0 +1,2 @@
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can", NAME="main_dcan0"
> >+SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can", NAME="main_dcan1"
> >diff --git a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> >index f38606f2..f9919708 100644
> >--- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> >+++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> >@@ -2,6 +2,21 @@ PR:append = ".arago7"
> >  FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
> >+CAN_RULES_SRC = ""
> >+CAN_RULES_SRC:j721e = "37-can-j7.rules"
> >+CAN_RULES_SRC:j7200 = "37-can-j7.rules"
> >+CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
> >+CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
> >+CAN_RULES_SRC:am65xx = "37-can-j7.rules"
> >+CAN_RULES_SRC:am62xx = "37-can-am62.rules"
> >+CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
> >+CAN_RULES_SRC:am62axx = "37-can-am62.rules"
> >+CAN_RULES_SRC:am64xx = "37-can-am62.rules"
> >+CAN_RULES_SRC:j722s = "37-can-am62.rules"
> >+CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
> >+CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
> >+CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
> >+
> >  SRC_URI:append = " \
> >      file://local.rules \
> >      file://usb1-rules.sh \
> >@@ -14,6 +29,10 @@ SRC_URI:append = " \
> >      file://timesyncd.conf \
> >  "
> >+SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
> >+SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
> >+SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
> >+
> >  do_install:append() {
> >      install -d ${D}${sysconfdir}/udev/rules.d/
> >      install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/
> >@@ -43,3 +62,21 @@ do_install:append() {
> >      install -d ${D}${sysconfdir}/systemd/
> >      install -m 0644 ${WORKDIR}/timesyncd.conf ${D}${sysconfdir}/systemd/
> >  }
> >+
> >+do_install:append:k3() {
> >+    install -d ${D}${libdir}/udev/rules.d
> >+    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> >+}
> >+
> >+do_install:append:dra7xx() {
> >+    install -d ${D}${libdir}/udev/rules.d
> >+    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> >+}
> >+
> >+do_install:append:ti33x() {
> >+    install -d ${D}${libdir}/udev/rules.d
> >+    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> >+}
> >+
> >+FILES:udev += "${CAN_RULES_TGT}"
> >+


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
  2024-02-13 17:40   ` Denys Dmytriyenko
@ 2024-02-16  8:14     ` Limaye, Aniket
  2024-02-17 13:30       ` Jon Cormier
       [not found]       ` <17B4A99ACD42F65A.28679@lists.yoctoproject.org>
  0 siblings, 2 replies; 9+ messages in thread
From: Limaye, Aniket @ 2024-02-16  8:14 UTC (permalink / raw)
  To: Denys Dmytriyenko, afd; +Cc: meta-arago, reatmon, Bhavya Kapoor

I assume the question being how do we plan to handle images where 
sysvinit is used instead of systemd?

I do not have a lot of experience with sysvinit vs systemd or udev rules 
for that matter. Do you have any suggestions to make these naming 
conventions apply to both?

Regards,
Aniket


On 2/13/2024 11:10 PM, Denys Dmytriyenko wrote:
> BTW, what about sysvinit support?
>
>
> On Thu, Feb 08, 2024 at 01:28:47PM -0600, Andrew Davis via lists.yoctoproject.org wrote:
>> On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org wrote:
>>> When multiple CAN's are present, then names that are getting assigned
>>> change after every boot even after providing alias in the device
>>> tree.
>>> So add udev rules to specify the interface name to use for
>>> each mcan device, to make it persistent across reboots.
>>>
>>> Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
>>> Signed-off-by: Aniket Limaye <a-limaye@ti.com>
>>> ---
>>> v4:
>>>      - Reformat patch to avoid repeated code for k3 devices
>>>      - Add udev rules for dra7xx and ti33x too, as suggested
>>>      - Still keeping separate files per platform to avoid potential
>>>        confusion created by merging all the rules into one file
>> You can keep the rules in separate files, but you need to install
>> them all unconditionally for all machines. Otherwise this package
>> becomes machine specific, which we should avoid.
>>
>> Andrew
>>
>>> v3: Fix typos in the filename being installed in v2
>>> v2:
>>>      - Switch to udev rules instead of systemd network links, as per
>>>        feedback from v1: https://lists.yoctoproject.org/g/meta-arago/message/15104
>>>      - Also, extend to Sitara devices as well
>>> ---
>>>   .../systemd/systemd/37-can-am62.rules         |  4 ++
>>>   .../systemd/systemd/37-can-dra7.rules         |  2 +
>>>   .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
>>>   .../systemd/systemd/37-can-ti33x.rules        |  2 +
>>>   .../recipes-core/systemd/systemd_%.bbappend   | 37 +++++++++++++++++++
>>>   5 files changed, 65 insertions(+)
>>>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>>   create mode 100644 meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>>
>>> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>> new file mode 100644
>>> index 00000000..59dc8075
>>> --- /dev/null
>>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>> @@ -0,0 +1,4 @@
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can", NAME="mcu_mcan0"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can", NAME="mcu_mcan1"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can", NAME="main_mcan0"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can", NAME="main_mcan1"
>>> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>> new file mode 100644
>>> index 00000000..3b14150d
>>> --- /dev/null
>>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>> @@ -0,0 +1,2 @@
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can", NAME="main_dcan1"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can", NAME="main_dcan2"
>>> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>> new file mode 100644
>>> index 00000000..f2804ecd
>>> --- /dev/null
>>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>> @@ -0,0 +1,20 @@
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can", NAME="mcu_mcan0"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can", NAME="mcu_mcan1"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can", NAME="main_mcan0"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can", NAME="main_mcan1"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can", NAME="main_mcan2"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can", NAME="main_mcan3"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can", NAME="main_mcan4"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can", NAME="main_mcan5"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can", NAME="main_mcan6"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can", NAME="main_mcan7"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can", NAME="main_mcan8"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can", NAME="main_mcan9"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can", NAME="main_mcan10"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can", NAME="main_mcan11"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can", NAME="main_mcan12"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can", NAME="main_mcan13"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can", NAME="main_mcan14"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can", NAME="main_mcan15"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can", NAME="main_mcan16"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can", NAME="main_mcan17"
>>> diff --git a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>> new file mode 100644
>>> index 00000000..62d650fe
>>> --- /dev/null
>>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>> @@ -0,0 +1,2 @@
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can", NAME="main_dcan0"
>>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can", NAME="main_dcan1"
>>> diff --git a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>>> index f38606f2..f9919708 100644
>>> --- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>>> +++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>>> @@ -2,6 +2,21 @@ PR:append = ".arago7"
>>>   FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
>>> +CAN_RULES_SRC = ""
>>> +CAN_RULES_SRC:j721e = "37-can-j7.rules"
>>> +CAN_RULES_SRC:j7200 = "37-can-j7.rules"
>>> +CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
>>> +CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
>>> +CAN_RULES_SRC:am65xx = "37-can-j7.rules"
>>> +CAN_RULES_SRC:am62xx = "37-can-am62.rules"
>>> +CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
>>> +CAN_RULES_SRC:am62axx = "37-can-am62.rules"
>>> +CAN_RULES_SRC:am64xx = "37-can-am62.rules"
>>> +CAN_RULES_SRC:j722s = "37-can-am62.rules"
>>> +CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
>>> +CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
>>> +CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
>>> +
>>>   SRC_URI:append = " \
>>>       file://local.rules \
>>>       file://usb1-rules.sh \
>>> @@ -14,6 +29,10 @@ SRC_URI:append = " \
>>>       file://timesyncd.conf \
>>>   "
>>> +SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
>>> +SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
>>> +SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
>>> +
>>>   do_install:append() {
>>>       install -d ${D}${sysconfdir}/udev/rules.d/
>>>       install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/
>>> @@ -43,3 +62,21 @@ do_install:append() {
>>>       install -d ${D}${sysconfdir}/systemd/
>>>       install -m 0644 ${WORKDIR}/timesyncd.conf ${D}${sysconfdir}/systemd/
>>>   }
>>> +
>>> +do_install:append:k3() {
>>> +    install -d ${D}${libdir}/udev/rules.d
>>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
>>> +}
>>> +
>>> +do_install:append:dra7xx() {
>>> +    install -d ${D}${libdir}/udev/rules.d
>>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
>>> +}
>>> +
>>> +do_install:append:ti33x() {
>>> +    install -d ${D}${libdir}/udev/rules.d
>>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
>>> +}
>>> +
>>> +FILES:udev += "${CAN_RULES_TGT}"
>>> +


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
  2024-02-16  8:14     ` Limaye, Aniket
@ 2024-02-17 13:30       ` Jon Cormier
       [not found]       ` <17B4A99ACD42F65A.28679@lists.yoctoproject.org>
  1 sibling, 0 replies; 9+ messages in thread
From: Jon Cormier @ 2024-02-17 13:30 UTC (permalink / raw)
  To: Aniket Limaye
  Cc: Denys Dmytriyenko, Davis, meta-arago, Ryan Eatmon, Bhavya Kapoor

[-- Attachment #1: Type: text/plain, Size: 9588 bytes --]

I think the current issue is that we are bbappend-ing a systemd recipe now
to install the udev rules. Perhaps there is a udev recipe that should be
bbappended instead?

On Fri, Feb 16, 2024, 3:14 AM Aniket Limaye via lists.yoctoproject.org
<a-limaye=ti.com@lists.yoctoproject.org> wrote:

> I assume the question being how do we plan to handle images where
> sysvinit is used instead of systemd?
>
> I do not have a lot of experience with sysvinit vs systemd or udev rules
> for that matter. Do you have any suggestions to make these naming
> conventions apply to both?
>
> Regards,
> Aniket
>
>
> On 2/13/2024 11:10 PM, Denys Dmytriyenko wrote:
> > BTW, what about sysvinit support?
> >
> >
> > On Thu, Feb 08, 2024 at 01:28:47PM -0600, Andrew Davis via
> lists.yoctoproject.org wrote:
> >> On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org wrote:
> >>> When multiple CAN's are present, then names that are getting assigned
> >>> change after every boot even after providing alias in the device
> >>> tree.
> >>> So add udev rules to specify the interface name to use for
> >>> each mcan device, to make it persistent across reboots.
> >>>
> >>> Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
> >>> Signed-off-by: Aniket Limaye <a-limaye@ti.com>
> >>> ---
> >>> v4:
> >>>      - Reformat patch to avoid repeated code for k3 devices
> >>>      - Add udev rules for dra7xx and ti33x too, as suggested
> >>>      - Still keeping separate files per platform to avoid potential
> >>>        confusion created by merging all the rules into one file
> >> You can keep the rules in separate files, but you need to install
> >> them all unconditionally for all machines. Otherwise this package
> >> becomes machine specific, which we should avoid.
> >>
> >> Andrew
> >>
> >>> v3: Fix typos in the filename being installed in v2
> >>> v2:
> >>>      - Switch to udev rules instead of systemd network links, as per
> >>>        feedback from v1:
> https://lists.yoctoproject.org/g/meta-arago/message/15104
> >>>      - Also, extend to Sitara devices as well
> >>> ---
> >>>   .../systemd/systemd/37-can-am62.rules         |  4 ++
> >>>   .../systemd/systemd/37-can-dra7.rules         |  2 +
> >>>   .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
> >>>   .../systemd/systemd/37-can-ti33x.rules        |  2 +
> >>>   .../recipes-core/systemd/systemd_%.bbappend   | 37
> +++++++++++++++++++
> >>>   5 files changed, 65 insertions(+)
> >>>   create mode 100644
> meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> >>>   create mode 100644
> meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> >>>   create mode 100644
> meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> >>>   create mode 100644
> meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> >>>
> >>> diff --git
> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> >>> new file mode 100644
> >>> index 00000000..59dc8075
> >>> --- /dev/null
> >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> >>> @@ -0,0 +1,4 @@
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can",
> NAME="mcu_mcan0"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can",
> NAME="mcu_mcan1"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can",
> NAME="main_mcan0"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can",
> NAME="main_mcan1"
> >>> diff --git
> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> >>> new file mode 100644
> >>> index 00000000..3b14150d
> >>> --- /dev/null
> >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> >>> @@ -0,0 +1,2 @@
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can",
> NAME="main_dcan1"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can",
> NAME="main_dcan2"
> >>> diff --git
> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> >>> new file mode 100644
> >>> index 00000000..f2804ecd
> >>> --- /dev/null
> >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> >>> @@ -0,0 +1,20 @@
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can",
> NAME="mcu_mcan0"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can",
> NAME="mcu_mcan1"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can",
> NAME="main_mcan0"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can",
> NAME="main_mcan1"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can",
> NAME="main_mcan2"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can",
> NAME="main_mcan3"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can",
> NAME="main_mcan4"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can",
> NAME="main_mcan5"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can",
> NAME="main_mcan6"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can",
> NAME="main_mcan7"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can",
> NAME="main_mcan8"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can",
> NAME="main_mcan9"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can",
> NAME="main_mcan10"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can",
> NAME="main_mcan11"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can",
> NAME="main_mcan12"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can",
> NAME="main_mcan13"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can",
> NAME="main_mcan14"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can",
> NAME="main_mcan15"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can",
> NAME="main_mcan16"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can",
> NAME="main_mcan17"
> >>> diff --git
> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> >>> new file mode 100644
> >>> index 00000000..62d650fe
> >>> --- /dev/null
> >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> >>> @@ -0,0 +1,2 @@
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can",
> NAME="main_dcan0"
> >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can",
> NAME="main_dcan1"
> >>> diff --git a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> >>> index f38606f2..f9919708 100644
> >>> --- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> >>> @@ -2,6 +2,21 @@ PR:append = ".arago7"
> >>>   FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
> >>> +CAN_RULES_SRC = ""
> >>> +CAN_RULES_SRC:j721e = "37-can-j7.rules"
> >>> +CAN_RULES_SRC:j7200 = "37-can-j7.rules"
> >>> +CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
> >>> +CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
> >>> +CAN_RULES_SRC:am65xx = "37-can-j7.rules"
> >>> +CAN_RULES_SRC:am62xx = "37-can-am62.rules"
> >>> +CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
> >>> +CAN_RULES_SRC:am62axx = "37-can-am62.rules"
> >>> +CAN_RULES_SRC:am64xx = "37-can-am62.rules"
> >>> +CAN_RULES_SRC:j722s = "37-can-am62.rules"
> >>> +CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
> >>> +CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
> >>> +CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
> >>> +
> >>>   SRC_URI:append = " \
> >>>       file://local.rules \
> >>>       file://usb1-rules.sh \
> >>> @@ -14,6 +29,10 @@ SRC_URI:append = " \
> >>>       file://timesyncd.conf \
> >>>   "
> >>> +SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
> >>> +SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
> >>> +SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
> >>> +
> >>>   do_install:append() {
> >>>       install -d ${D}${sysconfdir}/udev/rules.d/
> >>>       install -m 0644 ${WORKDIR}/local.rules
> ${D}${sysconfdir}/udev/rules.d/
> >>> @@ -43,3 +62,21 @@ do_install:append() {
> >>>       install -d ${D}${sysconfdir}/systemd/
> >>>       install -m 0644 ${WORKDIR}/timesyncd.conf
> ${D}${sysconfdir}/systemd/
> >>>   }
> >>> +
> >>> +do_install:append:k3() {
> >>> +    install -d ${D}${libdir}/udev/rules.d
> >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> >>> +}
> >>> +
> >>> +do_install:append:dra7xx() {
> >>> +    install -d ${D}${libdir}/udev/rules.d
> >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> >>> +}
> >>> +
> >>> +do_install:append:ti33x() {
> >>> +    install -d ${D}${libdir}/udev/rules.d
> >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> >>> +}
> >>> +
> >>> +FILES:udev += "${CAN_RULES_TGT}"
> >>> +
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#15201):
> https://lists.yoctoproject.org/g/meta-arago/message/15201
> Mute This Topic: https://lists.yoctoproject.org/mt/104244496/7902621
> Group Owner: meta-arago+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [
> jcormier@criticallink.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>
>

[-- Attachment #2: Type: text/html, Size: 13821 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
       [not found]       ` <17B4A99ACD42F65A.28679@lists.yoctoproject.org>
@ 2024-02-20 20:19         ` Jon Cormier
  2024-02-20 20:53           ` Ryan Eatmon
  0 siblings, 1 reply; 9+ messages in thread
From: Jon Cormier @ 2024-02-20 20:19 UTC (permalink / raw)
  To: jcormier
  Cc: Aniket Limaye, Denys Dmytriyenko, Davis, meta-arago, Ryan Eatmon,
	Bhavya Kapoor

[-- Attachment #1: Type: text/plain, Size: 10580 bytes --]

This is probably a better recipe to bbappend,
sources/oe-core/meta/recipes-core/udev/udev-extraconf_1.1.bb

On Sat, Feb 17, 2024 at 8:30 AM Jon Cormier via lists.yoctoproject.org
<jcormier=criticallink.com@lists.yoctoproject.org> wrote:

> I think the current issue is that we are bbappend-ing a systemd recipe now
> to install the udev rules. Perhaps there is a udev recipe that should be
> bbappended instead?
>
> On Fri, Feb 16, 2024, 3:14 AM Aniket Limaye via lists.yoctoproject.org
> <a-limaye=ti.com@lists.yoctoproject.org> wrote:
>
> > I assume the question being how do we plan to handle images where
> > sysvinit is used instead of systemd?
> >
> > I do not have a lot of experience with sysvinit vs systemd or udev rules
> > for that matter. Do you have any suggestions to make these naming
> > conventions apply to both?
> >
> > Regards,
> > Aniket
> >
> >
> > On 2/13/2024 11:10 PM, Denys Dmytriyenko wrote:
> > > BTW, what about sysvinit support?
> > >
> > >
> > > On Thu, Feb 08, 2024 at 01:28:47PM -0600, Andrew Davis via
> > lists.yoctoproject.org wrote:
> > >> On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org wrote:
> > >>> When multiple CAN's are present, then names that are getting assigned
> > >>> change after every boot even after providing alias in the device
> > >>> tree.
> > >>> So add udev rules to specify the interface name to use for
> > >>> each mcan device, to make it persistent across reboots.
> > >>>
> > >>> Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com>
> > >>> Signed-off-by: Aniket Limaye <a-limaye@ti.com>
> > >>> ---
> > >>> v4:
> > >>>      - Reformat patch to avoid repeated code for k3 devices
> > >>>      - Add udev rules for dra7xx and ti33x too, as suggested
> > >>>      - Still keeping separate files per platform to avoid potential
> > >>>        confusion created by merging all the rules into one file
> > >> You can keep the rules in separate files, but you need to install
> > >> them all unconditionally for all machines. Otherwise this package
> > >> becomes machine specific, which we should avoid.
> > >>
> > >> Andrew
> > >>
> > >>> v3: Fix typos in the filename being installed in v2
> > >>> v2:
> > >>>      - Switch to udev rules instead of systemd network links, as per
> > >>>        feedback from v1:
> > https://lists.yoctoproject.org/g/meta-arago/message/15104
> > >>>      - Also, extend to Sitara devices as well
> > >>> ---
> > >>>   .../systemd/systemd/37-can-am62.rules         |  4 ++
> > >>>   .../systemd/systemd/37-can-dra7.rules         |  2 +
> > >>>   .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
> > >>>   .../systemd/systemd/37-can-ti33x.rules        |  2 +
> > >>>   .../recipes-core/systemd/systemd_%.bbappend   | 37
> > +++++++++++++++++++
> > >>>   5 files changed, 65 insertions(+)
> > >>>   create mode 100644
> > meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> > >>>   create mode 100644
> > meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> > >>>   create mode 100644
> > meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> > >>>   create mode 100644
> > meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> > >>>
> > >>> diff --git
> > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> > >>> new file mode 100644
> > >>> index 00000000..59dc8075
> > >>> --- /dev/null
> > >>> +++
> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
> > >>> @@ -0,0 +1,4 @@
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can",
> > NAME="mcu_mcan0"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can",
> > NAME="mcu_mcan1"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can",
> > NAME="main_mcan0"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can",
> > NAME="main_mcan1"
> > >>> diff --git
> > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> > >>> new file mode 100644
> > >>> index 00000000..3b14150d
> > >>> --- /dev/null
> > >>> +++
> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
> > >>> @@ -0,0 +1,2 @@
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can",
> > NAME="main_dcan1"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can",
> > NAME="main_dcan2"
> > >>> diff --git
> > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> > >>> new file mode 100644
> > >>> index 00000000..f2804ecd
> > >>> --- /dev/null
> > >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
> > >>> @@ -0,0 +1,20 @@
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can",
> > NAME="mcu_mcan0"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can",
> > NAME="mcu_mcan1"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can",
> > NAME="main_mcan0"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can",
> > NAME="main_mcan1"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can",
> > NAME="main_mcan2"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can",
> > NAME="main_mcan3"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can",
> > NAME="main_mcan4"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can",
> > NAME="main_mcan5"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can",
> > NAME="main_mcan6"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can",
> > NAME="main_mcan7"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can",
> > NAME="main_mcan8"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can",
> > NAME="main_mcan9"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can",
> > NAME="main_mcan10"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can",
> > NAME="main_mcan11"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can",
> > NAME="main_mcan12"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can",
> > NAME="main_mcan13"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can",
> > NAME="main_mcan14"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can",
> > NAME="main_mcan15"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can",
> > NAME="main_mcan16"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can",
> > NAME="main_mcan17"
> > >>> diff --git
> > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> > >>> new file mode 100644
> > >>> index 00000000..62d650fe
> > >>> --- /dev/null
> > >>> +++
> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
> > >>> @@ -0,0 +1,2 @@
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can",
> > NAME="main_dcan0"
> > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can",
> > NAME="main_dcan1"
> > >>> diff --git
> a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> > b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> > >>> index f38606f2..f9919708 100644
> > >>> --- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> > >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
> > >>> @@ -2,6 +2,21 @@ PR:append = ".arago7"
> > >>>   FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
> > >>> +CAN_RULES_SRC = ""
> > >>> +CAN_RULES_SRC:j721e = "37-can-j7.rules"
> > >>> +CAN_RULES_SRC:j7200 = "37-can-j7.rules"
> > >>> +CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
> > >>> +CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
> > >>> +CAN_RULES_SRC:am65xx = "37-can-j7.rules"
> > >>> +CAN_RULES_SRC:am62xx = "37-can-am62.rules"
> > >>> +CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
> > >>> +CAN_RULES_SRC:am62axx = "37-can-am62.rules"
> > >>> +CAN_RULES_SRC:am64xx = "37-can-am62.rules"
> > >>> +CAN_RULES_SRC:j722s = "37-can-am62.rules"
> > >>> +CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
> > >>> +CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
> > >>> +CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
> > >>> +
> > >>>   SRC_URI:append = " \
> > >>>       file://local.rules \
> > >>>       file://usb1-rules.sh \
> > >>> @@ -14,6 +29,10 @@ SRC_URI:append = " \
> > >>>       file://timesyncd.conf \
> > >>>   "
> > >>> +SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
> > >>> +SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
> > >>> +SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
> > >>> +
> > >>>   do_install:append() {
> > >>>       install -d ${D}${sysconfdir}/udev/rules.d/
> > >>>       install -m 0644 ${WORKDIR}/local.rules
> > ${D}${sysconfdir}/udev/rules.d/
> > >>> @@ -43,3 +62,21 @@ do_install:append() {
> > >>>       install -d ${D}${sysconfdir}/systemd/
> > >>>       install -m 0644 ${WORKDIR}/timesyncd.conf
> > ${D}${sysconfdir}/systemd/
> > >>>   }
> > >>> +
> > >>> +do_install:append:k3() {
> > >>> +    install -d ${D}${libdir}/udev/rules.d
> > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> > >>> +}
> > >>> +
> > >>> +do_install:append:dra7xx() {
> > >>> +    install -d ${D}${libdir}/udev/rules.d
> > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> > >>> +}
> > >>> +
> > >>> +do_install:append:ti33x() {
> > >>> +    install -d ${D}${libdir}/udev/rules.d
> > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC} ${D}${CAN_RULES_TGT}
> > >>> +}
> > >>> +
> > >>> +FILES:udev += "${CAN_RULES_TGT}"
> > >>> +
> >
> >
> >
> >
> >
> >
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#15202):
> https://lists.yoctoproject.org/g/meta-arago/message/15202
> Mute This Topic: https://lists.yoctoproject.org/mt/104244496/7902621
> Group Owner: meta-arago+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [
> jcormier@criticallink.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>
>

-- 
Jonathan Cormier
Software Engineer

Voice:  315.425.4045 x222



http://www.CriticalLink.com <http://www.criticallink.com/>
6712 Brooklawn Parkway, Syracuse, NY 13211

<https://www.linkedin.com/company/critical-link-llc>
<https://twitter.com/Critical_Link>

[-- Attachment #2: Type: text/html, Size: 16993 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
  2024-02-20 20:19         ` Jon Cormier
@ 2024-02-20 20:53           ` Ryan Eatmon
  2024-02-21  6:00             ` Limaye, Aniket
  0 siblings, 1 reply; 9+ messages in thread
From: Ryan Eatmon @ 2024-02-20 20:53 UTC (permalink / raw)
  To: Jon Cormier
  Cc: Aniket Limaye, Denys Dmytriyenko, Davis, meta-arago, Bhavya Kapoor



On 2/20/2024 2:19 PM, Jon Cormier wrote:
> This is probably a better recipe to bbappend, 
> sources/oe-core/meta/recipes-core/udev/udev-extraconf_1.1.bb 
> <http://udev-extraconf_1.1.bb>

That's not a bad idea.

Aniket, can you take a look and see if moving these changes over to that 
recipe allows us to support both systemd and sysvinint?  Bear in mind, 
we have already accepted this patch series, so any changes would need to 
be a new patch.



> On Sat, Feb 17, 2024 at 8:30 AM Jon Cormier via lists.yoctoproject.org 
> <http://lists.yoctoproject.org> 
> <jcormier=criticallink.com@lists.yoctoproject.org 
> <mailto:criticallink.com@lists.yoctoproject.org>> wrote:
> 
>     I think the current issue is that we are bbappend-ing a systemd
>     recipe now
>     to install the udev rules. Perhaps there is a udev recipe that should be
>     bbappended instead?
> 
>     On Fri, Feb 16, 2024, 3:14 AM Aniket Limaye via
>     lists.yoctoproject.org <http://lists.yoctoproject.org>
>     <a-limaye=ti.com@lists.yoctoproject.org
>     <mailto:ti.com@lists.yoctoproject.org>> wrote:
> 
>      > I assume the question being how do we plan to handle images where
>      > sysvinit is used instead of systemd?
>      >
>      > I do not have a lot of experience with sysvinit vs systemd or
>     udev rules
>      > for that matter. Do you have any suggestions to make these naming
>      > conventions apply to both?
>      >
>      > Regards,
>      > Aniket
>      >
>      >
>      > On 2/13/2024 11:10 PM, Denys Dmytriyenko wrote:
>      > > BTW, what about sysvinit support?
>      > >
>      > >
>      > > On Thu, Feb 08, 2024 at 01:28:47PM -0600, Andrew Davis via
>      > lists.yoctoproject.org <http://lists.yoctoproject.org> wrote:
>      > >> On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org
>     <http://lists.yoctoproject.org> wrote:
>      > >>> When multiple CAN's are present, then names that are getting
>     assigned
>      > >>> change after every boot even after providing alias in the device
>      > >>> tree.
>      > >>> So add udev rules to specify the interface name to use for
>      > >>> each mcan device, to make it persistent across reboots.
>      > >>>
>      > >>> Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com
>     <mailto:b-kapoor@ti.com>>
>      > >>> Signed-off-by: Aniket Limaye <a-limaye@ti.com
>     <mailto:a-limaye@ti.com>>
>      > >>> ---
>      > >>> v4:
>      > >>>      - Reformat patch to avoid repeated code for k3 devices
>      > >>>      - Add udev rules for dra7xx and ti33x too, as suggested
>      > >>>      - Still keeping separate files per platform to avoid
>     potential
>      > >>>        confusion created by merging all the rules into one file
>      > >> You can keep the rules in separate files, but you need to install
>      > >> them all unconditionally for all machines. Otherwise this package
>      > >> becomes machine specific, which we should avoid.
>      > >>
>      > >> Andrew
>      > >>
>      > >>> v3: Fix typos in the filename being installed in v2
>      > >>> v2:
>      > >>>      - Switch to udev rules instead of systemd network links,
>     as per
>      > >>>        feedback from v1:
>      > https://lists.yoctoproject.org/g/meta-arago/message/15104
>     <https://lists.yoctoproject.org/g/meta-arago/message/15104>
>      > >>>      - Also, extend to Sitara devices as well
>      > >>> ---
>      > >>>   .../systemd/systemd/37-can-am62.rules         |  4 ++
>      > >>>   .../systemd/systemd/37-can-dra7.rules         |  2 +
>      > >>>   .../systemd/systemd/37-can-j7.rules           | 20 ++++++++++
>      > >>>   .../systemd/systemd/37-can-ti33x.rules        |  2 +
>      > >>>   .../recipes-core/systemd/systemd_%.bbappend   | 37
>      > +++++++++++++++++++
>      > >>>   5 files changed, 65 insertions(+)
>      > >>>   create mode 100644
>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>      > >>>   create mode 100644
>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>      > >>>   create mode 100644
>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>      > >>>   create mode 100644
>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>      > >>>
>      > >>> diff --git
>      > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>      > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>      > >>> new file mode 100644
>      > >>> index 00000000..59dc8075
>      > >>> --- /dev/null
>      > >>> +++
>     b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>      > >>> @@ -0,0 +1,4 @@
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can",
>      > NAME="mcu_mcan0"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can",
>      > NAME="mcu_mcan1"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can",
>      > NAME="main_mcan0"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can",
>      > NAME="main_mcan1"
>      > >>> diff --git
>      > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>      > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>      > >>> new file mode 100644
>      > >>> index 00000000..3b14150d
>      > >>> --- /dev/null
>      > >>> +++
>     b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>      > >>> @@ -0,0 +1,2 @@
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can",
>      > NAME="main_dcan1"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can",
>      > NAME="main_dcan2"
>      > >>> diff --git
>      > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>      > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>      > >>> new file mode 100644
>      > >>> index 00000000..f2804ecd
>      > >>> --- /dev/null
>      > >>> +++
>     b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>      > >>> @@ -0,0 +1,20 @@
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can",
>      > NAME="mcu_mcan0"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can",
>      > NAME="mcu_mcan1"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can",
>      > NAME="main_mcan0"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can",
>      > NAME="main_mcan1"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can",
>      > NAME="main_mcan2"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can",
>      > NAME="main_mcan3"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can",
>      > NAME="main_mcan4"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can",
>      > NAME="main_mcan5"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can",
>      > NAME="main_mcan6"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can",
>      > NAME="main_mcan7"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can",
>      > NAME="main_mcan8"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can",
>      > NAME="main_mcan9"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can",
>      > NAME="main_mcan10"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can",
>      > NAME="main_mcan11"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can",
>      > NAME="main_mcan12"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can",
>      > NAME="main_mcan13"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can",
>      > NAME="main_mcan14"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can",
>      > NAME="main_mcan15"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can",
>      > NAME="main_mcan16"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can",
>      > NAME="main_mcan17"
>      > >>> diff --git
>      > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>      > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>      > >>> new file mode 100644
>      > >>> index 00000000..62d650fe
>      > >>> --- /dev/null
>      > >>> +++
>     b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>      > >>> @@ -0,0 +1,2 @@
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can",
>      > NAME="main_dcan0"
>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can",
>      > NAME="main_dcan1"
>      > >>> diff --git
>     a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>      > b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>      > >>> index f38606f2..f9919708 100644
>      > >>> --- a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>      > >>> +++ b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>      > >>> @@ -2,6 +2,21 @@ PR:append = ".arago7"
>      > >>>   FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
>      > >>> +CAN_RULES_SRC = ""
>      > >>> +CAN_RULES_SRC:j721e = "37-can-j7.rules"
>      > >>> +CAN_RULES_SRC:j7200 = "37-can-j7.rules"
>      > >>> +CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
>      > >>> +CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
>      > >>> +CAN_RULES_SRC:am65xx = "37-can-j7.rules"
>      > >>> +CAN_RULES_SRC:am62xx = "37-can-am62.rules"
>      > >>> +CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
>      > >>> +CAN_RULES_SRC:am62axx = "37-can-am62.rules"
>      > >>> +CAN_RULES_SRC:am64xx = "37-can-am62.rules"
>      > >>> +CAN_RULES_SRC:j722s = "37-can-am62.rules"
>      > >>> +CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
>      > >>> +CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
>      > >>> +CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
>      > >>> +
>      > >>>   SRC_URI:append = " \
>      > >>>       file://local.rules \
>      > >>>       file://usb1-rules.sh \
>      > >>> @@ -14,6 +29,10 @@ SRC_URI:append = " \
>      > >>>       file://timesyncd.conf \
>      > >>>   "
>      > >>> +SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
>      > >>> +SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
>      > >>> +SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
>      > >>> +
>      > >>>   do_install:append() {
>      > >>>       install -d ${D}${sysconfdir}/udev/rules.d/
>      > >>>       install -m 0644 ${WORKDIR}/local.rules
>      > ${D}${sysconfdir}/udev/rules.d/
>      > >>> @@ -43,3 +62,21 @@ do_install:append() {
>      > >>>       install -d ${D}${sysconfdir}/systemd/
>      > >>>       install -m 0644 ${WORKDIR}/timesyncd.conf
>      > ${D}${sysconfdir}/systemd/
>      > >>>   }
>      > >>> +
>      > >>> +do_install:append:k3() {
>      > >>> +    install -d ${D}${libdir}/udev/rules.d
>      > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC}
>     ${D}${CAN_RULES_TGT}
>      > >>> +}
>      > >>> +
>      > >>> +do_install:append:dra7xx() {
>      > >>> +    install -d ${D}${libdir}/udev/rules.d
>      > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC}
>     ${D}${CAN_RULES_TGT}
>      > >>> +}
>      > >>> +
>      > >>> +do_install:append:ti33x() {
>      > >>> +    install -d ${D}${libdir}/udev/rules.d
>      > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC}
>     ${D}${CAN_RULES_TGT}
>      > >>> +}
>      > >>> +
>      > >>> +FILES:udev += "${CAN_RULES_TGT}"
>      > >>> +
>      >
>      >
>      >
>      >
>      >
>      >
> 
> 
>     -=-=-=-=-=-=-=-=-=-=-=-
>     Links: You receive all messages sent to this group.
>     View/Reply Online (#15202):
>     https://lists.yoctoproject.org/g/meta-arago/message/15202
>     <https://lists.yoctoproject.org/g/meta-arago/message/15202>
>     Mute This Topic: https://lists.yoctoproject.org/mt/104244496/7902621
>     <https://lists.yoctoproject.org/mt/104244496/7902621>
>     Group Owner: meta-arago+owner@lists.yoctoproject.org
>     <mailto:meta-arago%2Bowner@lists.yoctoproject.org>
>     Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub
>     <https://lists.yoctoproject.org/g/meta-arago/unsub>
>     [jcormier@criticallink.com <mailto:jcormier@criticallink.com>]
>     -=-=-=-=-=-=-=-=-=-=-=-
> 
> 
> 
> 
> -- 
> Jonathan Cormier
> Software Engineer
> 
> Voice: 315.425.4045 x222
> 
> 
> 
> http://www.CriticalLink.com <http://www.criticallink.com/>
> 6712 Brooklawn Parkway, Syracuse, NY 13211
> 
> <https://www.linkedin.com/company/critical-link-llc> 
> <https://twitter.com/Critical_Link>

-- 
Ryan Eatmon                reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc.  -  LCPD  -  MGTS


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices
  2024-02-20 20:53           ` Ryan Eatmon
@ 2024-02-21  6:00             ` Limaye, Aniket
  0 siblings, 0 replies; 9+ messages in thread
From: Limaye, Aniket @ 2024-02-21  6:00 UTC (permalink / raw)
  To: Ryan Eatmon, Jon Cormier
  Cc: Denys Dmytriyenko, Davis, meta-arago, Bhavya Kapoor

On 2/21/2024 2:23 AM, Ryan Eatmon wrote:
>
>
> On 2/20/2024 2:19 PM, Jon Cormier wrote:
>> This is probably a better recipe to bbappend, 
>> sources/oe-core/meta/recipes-core/udev/udev-extraconf_1.1.bb 
>> <http://udev-extraconf_1.1.bb>
>
Jon,

Thanks for the suggestion!


> That's not a bad idea.
>
> Aniket, can you take a look and see if moving these changes over to 
> that recipe allows us to support both systemd and sysvinint? Bear in 
> mind, we have already accepted this patch series, so any changes would 
> need to be a new patch.
>
Ryan,

Yeah sure... I can give it a shot, as a new patch.

>
>> On Sat, Feb 17, 2024 at 8:30 AM Jon Cormier via 
>> lists.yoctoproject.org <http://lists.yoctoproject.org> 
>> <jcormier=criticallink.com@lists.yoctoproject.org 
>> <mailto:criticallink.com@lists.yoctoproject.org>> wrote:
>>
>>     I think the current issue is that we are bbappend-ing a systemd
>>     recipe now
>>     to install the udev rules. Perhaps there is a udev recipe that 
>> should be
>>     bbappended instead?
>>
>>     On Fri, Feb 16, 2024, 3:14 AM Aniket Limaye via
>>     lists.yoctoproject.org <http://lists.yoctoproject.org>
>>     <a-limaye=ti.com@lists.yoctoproject.org
>>     <mailto:ti.com@lists.yoctoproject.org>> wrote:
>>
>>      > I assume the question being how do we plan to handle images where
>>      > sysvinit is used instead of systemd?
>>      >
>>      > I do not have a lot of experience with sysvinit vs systemd or
>>     udev rules
>>      > for that matter. Do you have any suggestions to make these naming
>>      > conventions apply to both?
>>      >
>>      > Regards,
>>      > Aniket
>>      >
>>      >
>>      > On 2/13/2024 11:10 PM, Denys Dmytriyenko wrote:
>>      > > BTW, what about sysvinit support?
>>      > >
>>      > >
>>      > > On Thu, Feb 08, 2024 at 01:28:47PM -0600, Andrew Davis via
>>      > lists.yoctoproject.org <http://lists.yoctoproject.org> wrote:
>>      > >> On 2/8/24 12:37 PM, Aniket Limaye via lists.yoctoproject.org
>>     <http://lists.yoctoproject.org> wrote:
>>      > >>> When multiple CAN's are present, then names that are getting
>>     assigned
>>      > >>> change after every boot even after providing alias in the 
>> device
>>      > >>> tree.
>>      > >>> So add udev rules to specify the interface name to use for
>>      > >>> each mcan device, to make it persistent across reboots.
>>      > >>>
>>      > >>> Signed-off-by: Bhavya Kapoor <b-kapoor@ti.com
>>     <mailto:b-kapoor@ti.com>>
>>      > >>> Signed-off-by: Aniket Limaye <a-limaye@ti.com
>>     <mailto:a-limaye@ti.com>>
>>      > >>> ---
>>      > >>> v4:
>>      > >>>      - Reformat patch to avoid repeated code for k3 devices
>>      > >>>      - Add udev rules for dra7xx and ti33x too, as suggested
>>      > >>>      - Still keeping separate files per platform to avoid
>>     potential
>>      > >>>        confusion created by merging all the rules into one 
>> file
>>      > >> You can keep the rules in separate files, but you need to 
>> install
>>      > >> them all unconditionally for all machines. Otherwise this 
>> package
>>      > >> becomes machine specific, which we should avoid.
>>      > >>
>>      > >> Andrew
>>      > >>
>>      > >>> v3: Fix typos in the filename being installed in v2
>>      > >>> v2:
>>      > >>>      - Switch to udev rules instead of systemd network links,
>>     as per
>>      > >>>        feedback from v1:
>>      > https://lists.yoctoproject.org/g/meta-arago/message/15104
>> <https://lists.yoctoproject.org/g/meta-arago/message/15104>
>>      > >>>      - Also, extend to Sitara devices as well
>>      > >>> ---
>>      > >>>   .../systemd/systemd/37-can-am62.rules        |  4 ++
>>      > >>>   .../systemd/systemd/37-can-dra7.rules        |  2 +
>>      > >>>   .../systemd/systemd/37-can-j7.rules        | 20 ++++++++++
>>      > >>>   .../systemd/systemd/37-can-ti33x.rules       |  2 +
>>      > >>>  .../recipes-core/systemd/systemd_%.bbappend   | 37
>>      > +++++++++++++++++++
>>      > >>>   5 files changed, 65 insertions(+)
>>      > >>>   create mode 100644
>>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>      > >>>   create mode 100644
>>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>      > >>>   create mode 100644
>>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>      > >>>   create mode 100644
>>      > meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>      > >>>
>>      > >>> diff --git
>>      > 
>> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>      > 
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>      > >>> new file mode 100644
>>      > >>> index 00000000..59dc8075
>>      > >>> --- /dev/null
>>      > >>> +++
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-am62.rules
>>      > >>> @@ -0,0 +1,4 @@
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e08000.can",
>>      > NAME="mcu_mcan0"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4e18000.can",
>>      > NAME="mcu_mcan1"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20701000.can",
>>      > NAME="main_mcan0"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="20711000.can",
>>      > NAME="main_mcan1"
>>      > >>> diff --git
>>      > 
>> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>      > 
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>      > >>> new file mode 100644
>>      > >>> index 00000000..3b14150d
>>      > >>> --- /dev/null
>>      > >>> +++
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-dra7.rules
>>      > >>> @@ -0,0 +1,2 @@
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="4ae3c000.can",
>>      > NAME="main_dcan1"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="48480000.can",
>>      > NAME="main_dcan2"
>>      > >>> diff --git
>>      > a/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>      > b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>      > >>> new file mode 100644
>>      > >>> index 00000000..f2804ecd
>>      > >>> --- /dev/null
>>      > >>> +++
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-j7.rules
>>      > >>> @@ -0,0 +1,20 @@
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40528000.can",
>>      > NAME="mcu_mcan0"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="40568000.can",
>>      > NAME="mcu_mcan1"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2701000.can",
>>      > NAME="main_mcan0"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2711000.can",
>>      > NAME="main_mcan1"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2721000.can",
>>      > NAME="main_mcan2"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2731000.can",
>>      > NAME="main_mcan3"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2741000.can",
>>      > NAME="main_mcan4"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2751000.can",
>>      > NAME="main_mcan5"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2761000.can",
>>      > NAME="main_mcan6"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2771000.can",
>>      > NAME="main_mcan7"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2781000.can",
>>      > NAME="main_mcan8"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2791000.can",
>>      > NAME="main_mcan9"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27a1000.can",
>>      > NAME="main_mcan10"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27b1000.can",
>>      > NAME="main_mcan11"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27c1000.can",
>>      > NAME="main_mcan12"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="27d1000.can",
>>      > NAME="main_mcan13"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2681000.can",
>>      > NAME="main_mcan14"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="2691000.can",
>>      > NAME="main_mcan15"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26a1000.can",
>>      > NAME="main_mcan16"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="26b1000.can",
>>      > NAME="main_mcan17"
>>      > >>> diff --git
>>      > 
>> a/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>      > 
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>      > >>> new file mode 100644
>>      > >>> index 00000000..62d650fe
>>      > >>> --- /dev/null
>>      > >>> +++
>> b/meta-arago-distro/recipes-core/systemd/systemd/37-can-ti33x.rules
>>      > >>> @@ -0,0 +1,2 @@
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481cc000.can",
>>      > NAME="main_dcan0"
>>      > >>> +SUBSYSTEM=="net", ACTION=="add", KERNELS=="481d0000.can",
>>      > NAME="main_dcan1"
>>      > >>> diff --git
>>     a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>>      > b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>>      > >>> index f38606f2..f9919708 100644
>>      > >>> --- 
>> a/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>>      > >>> +++ 
>> b/meta-arago-distro/recipes-core/systemd/systemd_%.bbappend
>>      > >>> @@ -2,6 +2,21 @@ PR:append = ".arago7"
>>      > >>>   FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
>>      > >>> +CAN_RULES_SRC = ""
>>      > >>> +CAN_RULES_SRC:j721e = "37-can-j7.rules"
>>      > >>> +CAN_RULES_SRC:j7200 = "37-can-j7.rules"
>>      > >>> +CAN_RULES_SRC:j721s2 = "37-can-j7.rules"
>>      > >>> +CAN_RULES_SRC:j784s4 = "37-can-j7.rules"
>>      > >>> +CAN_RULES_SRC:am65xx = "37-can-j7.rules"
>>      > >>> +CAN_RULES_SRC:am62xx = "37-can-am62.rules"
>>      > >>> +CAN_RULES_SRC:am62pxx = "37-can-am62.rules"
>>      > >>> +CAN_RULES_SRC:am62axx = "37-can-am62.rules"
>>      > >>> +CAN_RULES_SRC:am64xx = "37-can-am62.rules"
>>      > >>> +CAN_RULES_SRC:j722s = "37-can-am62.rules"
>>      > >>> +CAN_RULES_SRC:dra7xx = "37-can-dra7.rules"
>>      > >>> +CAN_RULES_SRC:ti33x = "37-can-ti33x.rules"
>>      > >>> +CAN_RULES_TGT = "${libdir}/udev/rules.d/37-can.rules"
>>      > >>> +
>>      > >>>   SRC_URI:append = " \
>>      > >>>       file://local.rules \
>>      > >>>       file://usb1-rules.sh \
>>      > >>> @@ -14,6 +29,10 @@ SRC_URI:append = " \
>>      > >>>       file://timesyncd.conf \
>>      > >>>   "
>>      > >>> +SRC_URI:append:k3 = " file://${CAN_RULES_SRC}"
>>      > >>> +SRC_URI:append:dra7xx = " file://${CAN_RULES_SRC}"
>>      > >>> +SRC_URI:append:ti33x = " file://${CAN_RULES_SRC}"
>>      > >>> +
>>      > >>>   do_install:append() {
>>      > >>>       install -d ${D}${sysconfdir}/udev/rules.d/
>>      > >>>       install -m 0644 ${WORKDIR}/local.rules
>>      > ${D}${sysconfdir}/udev/rules.d/
>>      > >>> @@ -43,3 +62,21 @@ do_install:append() {
>>      > >>>       install -d ${D}${sysconfdir}/systemd/
>>      > >>>       install -m 0644 ${WORKDIR}/timesyncd.conf
>>      > ${D}${sysconfdir}/systemd/
>>      > >>>   }
>>      > >>> +
>>      > >>> +do_install:append:k3() {
>>      > >>> +    install -d ${D}${libdir}/udev/rules.d
>>      > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC}
>>     ${D}${CAN_RULES_TGT}
>>      > >>> +}
>>      > >>> +
>>      > >>> +do_install:append:dra7xx() {
>>      > >>> +    install -d ${D}${libdir}/udev/rules.d
>>      > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC}
>>     ${D}${CAN_RULES_TGT}
>>      > >>> +}
>>      > >>> +
>>      > >>> +do_install:append:ti33x() {
>>      > >>> +    install -d ${D}${libdir}/udev/rules.d
>>      > >>> +    install -m 0644 ${WORKDIR}/${CAN_RULES_SRC}
>>     ${D}${CAN_RULES_TGT}
>>      > >>> +}
>>      > >>> +
>>      > >>> +FILES:udev += "${CAN_RULES_TGT}"
>>      > >>> +
>>      >
>>      >
>>      >
>>      >
>>      >
>>      >
>>
>>
>>     -=-=-=-=-=-=-=-=-=-=-=-
>>     Links: You receive all messages sent to this group.
>>     View/Reply Online (#15202):
>>     https://lists.yoctoproject.org/g/meta-arago/message/15202
>> <https://lists.yoctoproject.org/g/meta-arago/message/15202>
>>     Mute This Topic: https://lists.yoctoproject.org/mt/104244496/7902621
>>     <https://lists.yoctoproject.org/mt/104244496/7902621>
>>     Group Owner: meta-arago+owner@lists.yoctoproject.org
>>     <mailto:meta-arago%2Bowner@lists.yoctoproject.org>
>>     Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub
>>     <https://lists.yoctoproject.org/g/meta-arago/unsub>
>>     [jcormier@criticallink.com <mailto:jcormier@criticallink.com>]
>>     -=-=-=-=-=-=-=-=-=-=-=-
>>
>>
>>
>>
>> -- 
>> Jonathan Cormier
>> Software Engineer
>>
>> Voice: 315.425.4045 x222
>>
>>
>>
>> http://www.CriticalLink.com <http://www.criticallink.com/>
>> 6712 Brooklawn Parkway, Syracuse, NY 13211
>>
>> <https://www.linkedin.com/company/critical-link-llc> 
>> <https://twitter.com/Critical_Link>
>

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-02-21  6:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-08 18:37 [meta-arago][kirkstone/master][PATCH v4] systemd: Add udev rules for persistent naming of the can devices Aniket Limaye
2024-02-08 19:28 ` Andrew Davis
2024-02-09  5:16   ` Limaye, Aniket
2024-02-13 17:40   ` Denys Dmytriyenko
2024-02-16  8:14     ` Limaye, Aniket
2024-02-17 13:30       ` Jon Cormier
     [not found]       ` <17B4A99ACD42F65A.28679@lists.yoctoproject.org>
2024-02-20 20:19         ` Jon Cormier
2024-02-20 20:53           ` Ryan Eatmon
2024-02-21  6:00             ` Limaye, Aniket

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).