diff options
-rw-r--r-- | meta/recipes-core/udev/udev-extraconf/mount.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/udev/udev-extraconf/mount.sh b/meta/recipes-core/udev/udev-extraconf/mount.sh index 3ee67b1318..79eb0145c2 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() { | |||
57 | vfat|fat) | 57 | vfat|fat) |
58 | MOUNT="$MOUNT -o umask=007,gid=`awk -F':' '/^disk/{print $3}' /etc/group`" | 58 | MOUNT="$MOUNT -o umask=007,gid=`awk -F':' '/^disk/{print $3}' /etc/group`" |
59 | ;; | 59 | ;; |
60 | swap) | ||
61 | return ;; | ||
60 | # TODO | 62 | # TODO |
61 | *) | 63 | *) |
62 | ;; | 64 | ;; |
@@ -98,6 +100,8 @@ automount() { | |||
98 | vfat|fat) | 100 | vfat|fat) |
99 | MOUNT="$MOUNT -o umask=007,gid=`awk -F':' '/^disk/{print $3}' /etc/group`" | 101 | MOUNT="$MOUNT -o umask=007,gid=`awk -F':' '/^disk/{print $3}' /etc/group`" |
100 | ;; | 102 | ;; |
103 | swap) | ||
104 | return ;; | ||
101 | # TODO | 105 | # TODO |
102 | *) | 106 | *) |
103 | ;; | 107 | ;; |