summaryrefslogtreecommitdiff
path: root/recipes-core/udev/files/colibri-imx7
diff options
context:
space:
mode:
authorPhilippe Schenker <philippe.schenker@toradex.com>2021-05-19 10:28:55 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2021-05-20 22:01:40 +0000
commitf8d013071a68cb90bbff8e00bdb328e472354ab8 (patch)
tree449cfaa008d0b9c97273dbb80d2d358383d909d4 /recipes-core/udev/files/colibri-imx7
parentfad3643e14fc4412288549b833b097ec4a44bf33 (diff)
recipes-core: udev: change sd-card symlinks to style of emmc rules
This commit does three things: - Use "-part<number>" instead of "-p" as it is with /dev/emmc symlinks - Use ENV{DEVTYPE} as it is used with /dev/emmc symlinks to for sure be able to distinguish partitions vs. disks - Use %n in stead of $attr{partition} as it is already used for emmc symlink rules Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
Diffstat (limited to 'recipes-core/udev/files/colibri-imx7')
-rw-r--r--recipes-core/udev/files/colibri-imx7/99-toradex.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-core/udev/files/colibri-imx7/99-toradex.rules b/recipes-core/udev/files/colibri-imx7/99-toradex.rules
index 2371a91..56f454f 100644
--- a/recipes-core/udev/files/colibri-imx7/99-toradex.rules
+++ b/recipes-core/udev/files/colibri-imx7/99-toradex.rules
@@ -6,5 +6,5 @@ ACTION=="add", ATTRS{iomem_base}=="0x30880000", SYMLINK+="colibri-uartc"
ACTION=="add", KERNEL=="watchdog", DRIVERS=="rn5t618-wdt", SYMLINK+="colibri-watchdog"
ACTION=="add", SUBSYSTEM=="spidev", KERNELS=="30840000.*spi", SYMLINK+="colibri-spi-cs%n"
SUBSYSTEM=="iio", KERNELS=="iio:device0", RUN+="/etc/udev/scripts/toradex-adc.sh"
-ACTION=="add|change", KERNEL=="mmcblk[0-9]", KERNELS=="30b40000.usdhc", SYMLINK+="colibri-sd"
-ACTION=="add|change", KERNEL=="mmcblk[0-9]p[0-9]*", KERNELS=="30b40000.usdhc", SYMLINK+="colibri-sd-p$attr{partition}"
+ACTION=="add|change", KERNEL=="mmcblk[0-9]", ENV{DEVTYPE}=="disk", KERNELS=="30b40000.usdhc", SYMLINK+="colibri-sd"
+ACTION=="add|change", KERNEL=="mmcblk[0-9]p[0-9]*", ENV{DEVTYPE}=="partition", KERNELS=="30b40000.usdhc", SYMLINK+="colibri-sd-part%n"