mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 06:12:14 +01:00
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
12 lines
392 B
Diff
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];
|