chiark / gitweb /
proot: Expose /storage in termux-chroot
authorFredrik Fornwall <fredrik@fornwall.net>
Sun, 27 Mar 2016 22:10:22 +0000 (18:10 -0400)
committerFredrik Fornwall <fredrik@fornwall.net>
Sun, 27 Mar 2016 22:10:22 +0000 (18:10 -0400)
packages/proot/build.sh
packages/proot/termux-chroot

index 5004d7294df2a4543bc0690483a237a0df49d709..567cf9830ba2d6ad14c2da73789ad86587152933 100644 (file)
@@ -1,6 +1,6 @@
 TERMUX_PKG_HOMEPAGE=http://proot.me/
 TERMUX_PKG_DESCRIPTION="Emulate chroot, bind mount and binfmt_misc for non-root users"
-TERMUX_PKG_VERSION=5.1.99
+TERMUX_PKG_VERSION=5.1.100
 TERMUX_PKG_SRCURL=https://github.com/proot-me/PRoot/archive/next.zip
 TERMUX_PKG_FOLDERNAME=PRoot-next
 TERMUX_PKG_DEPENDS="libtalloc"
index 5dde068ee8f4232e1a38b1e784376ee82320fe4b..9a84101d3f24b61f6750cd49d68159b503c6ebd9 100755 (executable)
@@ -15,6 +15,11 @@ ARGS="-b /system:/system"
 # to find e.g. configurations files there work.
 ARGS="$ARGS -b $PREFIX/..:$PREFIX/.."
 
+# Expose external and internal storage:
+if [ -d /storage ]; then
+       ARGS="$ARGS -b /storage:/storage"
+fi
+
 # Mimic traditional Linux file system hierarchy - /usr:
 ARGS="$ARGS -b $PREFIX:/usr"