proot: Expose /storage in termux-chroot

This commit is contained in:
Fredrik Fornwall 2016-03-27 18:10:22 -04:00
parent 216acc0654
commit c491cc4966
2 changed files with 6 additions and 1 deletions

View 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"

View File

@ -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"