diff options
| -rw-r--r-- | meta/recipes-core/glib-2.0/glib-2.0/allow-run-media-sdX-drive-mount-if-username-root.patch | 39 | ||||
| -rw-r--r-- | meta/recipes-core/glib-2.0/glib-2.0_2.40.0.bb | 1 |
2 files changed, 40 insertions, 0 deletions
diff --git a/meta/recipes-core/glib-2.0/glib-2.0/allow-run-media-sdX-drive-mount-if-username-root.patch b/meta/recipes-core/glib-2.0/glib-2.0/allow-run-media-sdX-drive-mount-if-username-root.patch new file mode 100644 index 0000000000..3d0c008bbe --- /dev/null +++ b/meta/recipes-core/glib-2.0/glib-2.0/allow-run-media-sdX-drive-mount-if-username-root.patch | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | From c53e94a520b573aa0dcf12903e9563fe8badc34c Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Marius Avram <marius.avram@intel.com> | ||
| 3 | Date: Wed, 27 Aug 2014 12:10:41 +0300 | ||
| 4 | Subject: [PATCH] Allow /run/media/sdX drive mount if username root | ||
| 5 | |||
| 6 | In case that the username logged in the system is root | ||
| 7 | the drives are directly mounted in /run/media/sdX and | ||
| 8 | not /run/media/<username>/sdX as the function | ||
| 9 | g_unix_mount_guess_should_display() expects. | ||
| 10 | |||
| 11 | Without this change USB stick mounts are not accesible from | ||
| 12 | graphical applications such as the File Manager (pcmanfm). | ||
| 13 | |||
| 14 | Upstream-Status: Inappropriate | ||
| 15 | |||
| 16 | Signed-off-by: Marius Avram <marius.avram@intel.com> | ||
| 17 | --- | ||
| 18 | gio/gunixmounts.c | 5 +++++ | ||
| 19 | 1 file changed, 5 insertions(+) | ||
| 20 | |||
| 21 | diff --git a/gio/gunixmounts.c b/gio/gunixmounts.c | ||
| 22 | index 4999354..f6c1472 100644 | ||
| 23 | --- a/gio/gunixmounts.c | ||
| 24 | +++ b/gio/gunixmounts.c | ||
| 25 | @@ -2136,6 +2136,11 @@ g_unix_mount_guess_should_display (GUnixMountEntry *mount_entry) | ||
| 26 | mount_path[sizeof ("/run/media/") - 1 + user_name_len] == '/') | ||
| 27 | is_in_runtime_dir = TRUE; | ||
| 28 | |||
| 29 | + /* Allow no username in path in /run/media if current user is root */ | ||
| 30 | + if (strcmp(user_name, "root") == 0 && | ||
| 31 | + strncmp (mount_path, "/run/media/", sizeof("run/media")) == 0) | ||
| 32 | + is_in_runtime_dir = TRUE; | ||
| 33 | + | ||
| 34 | if (is_in_runtime_dir || g_str_has_prefix (mount_path, "/media/")) | ||
| 35 | { | ||
| 36 | char *path; | ||
| 37 | -- | ||
| 38 | 1.7.9.5 | ||
| 39 | |||
diff --git a/meta/recipes-core/glib-2.0/glib-2.0_2.40.0.bb b/meta/recipes-core/glib-2.0/glib-2.0_2.40.0.bb index ff1fb87a38..4b1bcf85c5 100644 --- a/meta/recipes-core/glib-2.0/glib-2.0_2.40.0.bb +++ b/meta/recipes-core/glib-2.0/glib-2.0_2.40.0.bb | |||
| @@ -13,6 +13,7 @@ SRC_URI = "${GNOME_MIRROR}/glib/${SHRT_VER}/glib-${PV}.tar.xz \ | |||
| 13 | file://ptest-paths.patch \ | 13 | file://ptest-paths.patch \ |
| 14 | file://uclibc.patch \ | 14 | file://uclibc.patch \ |
| 15 | file://0001-configure.ac-Do-not-use-readlink-when-cross-compilin.patch \ | 15 | file://0001-configure.ac-Do-not-use-readlink-when-cross-compilin.patch \ |
| 16 | file://allow-run-media-sdX-drive-mount-if-username-root.patch \ | ||
| 16 | " | 17 | " |
| 17 | 18 | ||
| 18 | SRC_URI_append_class-native = " file://glib-gettextize-dir.patch" | 19 | SRC_URI_append_class-native = " file://glib-gettextize-dir.patch" |
