mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
udev-extraconf/mount.sh: ignore lvm in automount
Failure message is shown in boot logs when trying to mount lvm as automounter does not handle cases where lvm is mounted. This simply skips lvm while automounting to avoid failure message in boot logs. (From OE-Core rev: b1d18072ed9a8b0bca0f20f8e5deefa73ab6acbe) Signed-off-by: Ansar Rasool <ansar_rasool@mentor.com> Signed-off-by: Muhammad Hamza <muhammad_hamza@mentor.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
b4b004641a
commit
69ff043e62
|
|
@ -76,6 +76,8 @@ automount_systemd() {
|
|||
;;
|
||||
swap)
|
||||
return ;;
|
||||
lvm*|LVM*)
|
||||
return ;;
|
||||
# TODO
|
||||
*)
|
||||
;;
|
||||
|
|
@ -129,6 +131,8 @@ automount() {
|
|||
;;
|
||||
swap)
|
||||
return ;;
|
||||
lvm*|LVM*)
|
||||
return ;;
|
||||
# TODO
|
||||
*)
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user