summaryrefslogtreecommitdiff
path: root/system/bubblewrap/realpath-workaround.patch
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2022-05-03 22:45:26 +0000
committerZach van Rijn <me@zv.io>2022-05-06 12:37:31 -0500
commitab525f26fbb1d20c58d877214bb2d9931382cd4a (patch)
treea6aacd59dd1b8baf6bdeba37c5b688abafeebbc1 /system/bubblewrap/realpath-workaround.patch
parent433a7752608e77a7b7281ccfee6f51d093e3a2de (diff)
downloadpackages-ab525f26fbb1d20c58d877214bb2d9931382cd4a.tar.gz
packages-ab525f26fbb1d20c58d877214bb2d9931382cd4a.tar.bz2
packages-ab525f26fbb1d20c58d877214bb2d9931382cd4a.tar.xz
packages-ab525f26fbb1d20c58d877214bb2d9931382cd4a.zip
system/bubblewrap: bump { 0.4.1 --> 0.6.1 }.
Diffstat (limited to 'system/bubblewrap/realpath-workaround.patch')
-rw-r--r--system/bubblewrap/realpath-workaround.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/system/bubblewrap/realpath-workaround.patch b/system/bubblewrap/realpath-workaround.patch
deleted file mode 100644
index 6f1e3b54b..000000000
--- a/system/bubblewrap/realpath-workaround.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Musl realpath() implementation currently depends on /proc which is
-not available when setting up pivot root. For the time being just
-fallback to given path if realpath() fails. If there was symlinks
-that would have required normalizing the following parse_mountinfo()
-will fail.
-
-diff --git a/bind-mount.c b/bind-mount.c
-index 7d3543f..c33b701 100644
---- a/bind-mount.c
-+++ b/bind-mount.c
-@@ -397,7 +397,7 @@ bind_mount (int proc_fd,
- path, so to find it in the mount table we need to do that too. */
- resolved_dest = realpath (dest, NULL);
- if (resolved_dest == NULL)
-- return 2;
-+ resolved_dest = strdup (dest);
-
- mount_tab = parse_mountinfo (proc_fd, resolved_dest);
- if (mount_tab[0].mountpoint == NULL)