mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
udev-extraconf: Avoid mounting unknown filesystems
Depending on kernel version used, the system can hung when trying to mount the extended partition (not the logical one) as it is a holder for other partitions and does not have a filesystem in it. To avoid this to happen we just mount partitions when these are using known filesystems so it does not try to mount a partition for an unsupported filesystem. Reported-by: Vladan Jovanovic <vladan.jovanovic@gmail.com> Reported-by: Leonardo Sandoval Gonzalez <b42214@freescale.com> (From OE-Core rev: 895c9685a7f95dc84786213f945895a504a16254) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Tested-by: Vladan Jovanovic <vladan.jovanovic@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
35483a6176
commit
6a7aa9cac2
@@ -47,7 +47,7 @@ rm_dir() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ "$ACTION" = "add" ] && [ -n "$DEVNAME" ]; then
|
if [ "$ACTION" = "add" ] && [ -n "$DEVNAME" ] && [ -n "$ID_FS_TYPE" ]; then
|
||||||
if [ -x "$PMOUNT" ]; then
|
if [ -x "$PMOUNT" ]; then
|
||||||
$PMOUNT $DEVNAME 2> /dev/null
|
$PMOUNT $DEVNAME 2> /dev/null
|
||||||
elif [ -x $MOUNT ]; then
|
elif [ -x $MOUNT ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user