mutt: Update from 1.8.2 to 1.8.3
[termux-packages] / packages / proot / termux-chroot
index 5dde068..d9d73fc 100755 (executable)
@@ -11,10 +11,19 @@ fi
 # For the /system/bin/linker(64) to be found:
 ARGS="-b /system:/system"
 
+# On some devices /vendor is required for termux packages to work correctly
+# See https://github.com/termux/proot/issues/2#issuecomment-303995382
+ARGS="$ARGS -b /vendor:/vendor"
+
 # Bind $PREFIX so Termux programs expecting
 # 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"