FerryAr / lhroot

Linux Chroot Installer & Bootscript Magisk Module.
GNU General Public License v3.0
190 stars 20 forks source link

custom mount point #28

Closed jwchen119 closed 1 year ago

jwchen119 commented 1 year ago

Hi,

I'm trying to use this method to install klipper. But now I need to add a new mount point at "/data/data/com.octo4a/files" to use the serial from another app in chroot. How to achieve that?

FerryAr commented 1 year ago

just mount using busybox from android terminal

e.g busybox mount /data/data/com.octo4a/files /data/debian/mnt

jwchen119 commented 1 year ago

Thanks! That's clever.