aports/main/udisks/udisks-uhelper.patch
Natanael Copa 7711090cdb main/udisk: fix mounting with busybox mount
busybox mount does not support the uhelper= mount option and util-linux
appears to just ignore it. Rather than adding code that does nothing
to busybox mount we just drop the uhelper=udisks from udisks side.

Reported upstream:
https://bugs.freedesktop.org/show_bug.cgi?id=41142
2011-09-23 09:16:37 +00:00

12 lines
392 B
Diff

--- ./src/device.c.orig
+++ ./src/device.c
@@ -6480,7 +6480,7 @@
options = prepend_default_mount_options (device, fsmo, caller_uid, given_options);
/* validate mount options and check for authorizations */
- s = g_string_new ("uhelper=udisks,nodev,nosuid");
+ s = g_string_new ("nodev,nosuid");
for (n = 0; options[n] != NULL; n++)
{
const char *option = options[n];