[oe-commits] [openembedded-core] 01/14: udev-extraconf: do not mount swap partitions

git at git.openembedded.org git at git.openembedded.org
Mon Jul 22 20:40:18 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 7a2c56da85326043f0663c29535ac3fb555d96fe
Author: Oleksandr Kravchuk <open.source at oleksandr-kravchuk.com>
AuthorDate: Sat Jul 20 17:57:50 2019 +0200

    udev-extraconf: do not mount swap partitions
    
    Swap is a special filesystem that cannot be mounted, so do not try to,
    otherwise we will have service that tries and fails to mount it with
    the following error:
    
    systemd[1]: Mounting /run/media/nvme0n1p3...
    mount[1229]: mount: /run/media/nvme0n1p3: unknown filesystem type 'swap'.
    
    Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk at pelagicore.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/udev/udev-extraconf/mount.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/recipes-core/udev/udev-extraconf/mount.sh b/meta/recipes-core/udev/udev-extraconf/mount.sh
index 3ee67b1..79eb014 100644
--- a/meta/recipes-core/udev/udev-extraconf/mount.sh
+++ b/meta/recipes-core/udev/udev-extraconf/mount.sh
@@ -57,6 +57,8 @@ automount_systemd() {
     vfat|fat)
         MOUNT="$MOUNT -o umask=007,gid=`awk -F':' '/^disk/{print $3}' /etc/group`"
         ;;
+    swap)
+        return ;;
     # TODO
     *)
         ;;
@@ -98,6 +100,8 @@ automount() {
 	vfat|fat)
 		MOUNT="$MOUNT -o umask=007,gid=`awk -F':' '/^disk/{print $3}' /etc/group`"
 		;;
+	swap)
+		return ;;
 	# TODO
 	*)
 		;;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list