summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/udev/udev-extraconf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-17 12:50:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-20 22:52:22 +0100
commitb5c0b44a066077fccf4d6c2d811d55622376b546 (patch)
tree7f46332438e07acad227a7403b2880fdf1c7ecf9 /meta/recipes-core/udev/udev-extraconf
parent5553ef8096a2ba48272df58845a8f9e23f8f5297 (diff)
downloadpoky-b5c0b44a066077fccf4d6c2d811d55622376b546.tar.gz
udev-extraconf/initrdscripts/parted: Rename mount.blacklist -> mount.ignorelist
(From OE-Core rev: 69e486ddb3059f80ba538e1f59c2ca8a8df0faf9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/udev/udev-extraconf')
-rw-r--r--meta/recipes-core/udev/udev-extraconf/mount.ignorelist (renamed from meta/recipes-core/udev/udev-extraconf/mount.blacklist)0
-rw-r--r--meta/recipes-core/udev/udev-extraconf/mount.sh4
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/udev/udev-extraconf/mount.blacklist b/meta/recipes-core/udev/udev-extraconf/mount.ignorelist
index e49349428b..e49349428b 100644
--- a/meta/recipes-core/udev/udev-extraconf/mount.blacklist
+++ b/meta/recipes-core/udev/udev-extraconf/mount.ignorelist
diff --git a/meta/recipes-core/udev/udev-extraconf/mount.sh b/meta/recipes-core/udev/udev-extraconf/mount.sh
index b23731870e..5ba66e98e2 100644
--- a/meta/recipes-core/udev/udev-extraconf/mount.sh
+++ b/meta/recipes-core/udev/udev-extraconf/mount.sh
@@ -26,11 +26,11 @@ fi
26 26
27PMOUNT="/usr/bin/pmount" 27PMOUNT="/usr/bin/pmount"
28 28
29for line in `grep -h -v ^# /etc/udev/mount.blacklist /etc/udev/mount.blacklist.d/*` 29for line in `grep -h -v ^# /etc/udev/mount.ignorelist /etc/udev/mount.ignorelist.d/*`
30do 30do
31 if [ ` expr match "$DEVNAME" "$line" ` -gt 0 ]; 31 if [ ` expr match "$DEVNAME" "$line" ` -gt 0 ];
32 then 32 then
33 logger "udev/mount.sh" "[$DEVNAME] is blacklisted, ignoring" 33 logger "udev/mount.sh" "[$DEVNAME] is marked to ignore"
34 exit 0 34 exit 0
35 fi 35 fi
36done 36done