Initial Release
This commit is contained in:
parent
4fb147e48a
commit
727192e6a8
16 changed files with 436 additions and 0 deletions
151
META-INF/com/google/android/update-binary
Executable file
151
META-INF/com/google/android/update-binary
Executable file
|
@ -0,0 +1,151 @@
|
||||||
|
#!/sbin/sh
|
||||||
|
|
||||||
|
TMPDIR=/dev/tmp
|
||||||
|
MOUNTPATH=/dev/magisk_img
|
||||||
|
|
||||||
|
# Default permissions
|
||||||
|
umask 022
|
||||||
|
|
||||||
|
# Initial cleanup
|
||||||
|
rm -rf $TMPDIR 2>/dev/null
|
||||||
|
mkdir -p $TMPDIR
|
||||||
|
|
||||||
|
# echo before loading util_functions
|
||||||
|
ui_print() { echo "$1"; }
|
||||||
|
|
||||||
|
require_new_magisk() {
|
||||||
|
ui_print "***********************************"
|
||||||
|
ui_print " Please install the latest Magisk! "
|
||||||
|
ui_print "***********************************"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
imageless_magisk() {
|
||||||
|
[ $MAGISK_VER_CODE -gt 18100 ]
|
||||||
|
return $?
|
||||||
|
}
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Environment
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
OUTFD=$2
|
||||||
|
ZIPFILE=$3
|
||||||
|
|
||||||
|
mount /data 2>/dev/null
|
||||||
|
|
||||||
|
# Load utility functions
|
||||||
|
if [ -f /data/adb/magisk/util_functions.sh ]; then
|
||||||
|
. /data/adb/magisk/util_functions.sh
|
||||||
|
NVBASE=/data/adb
|
||||||
|
else
|
||||||
|
require_new_magisk
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Preperation for flashable zips
|
||||||
|
setup_flashable
|
||||||
|
|
||||||
|
# Mount partitions
|
||||||
|
mount_partitions
|
||||||
|
|
||||||
|
# Detect version and architecture
|
||||||
|
api_level_arch_detect
|
||||||
|
|
||||||
|
# Setup busybox and binaries
|
||||||
|
$BOOTMODE && boot_actions || recovery_actions
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Preparation
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Extract common files
|
||||||
|
unzip -oj "$ZIPFILE" module.prop install.sh uninstall.sh 'common/*' -d $TMPDIR >&2
|
||||||
|
|
||||||
|
[ ! -f $TMPDIR/install.sh ] && abort "! Unable to extract zip file!"
|
||||||
|
# Load install script
|
||||||
|
. $TMPDIR/install.sh
|
||||||
|
|
||||||
|
if imageless_magisk; then
|
||||||
|
$BOOTMODE && MODDIRNAME=modules_update || MODDIRNAME=modules
|
||||||
|
MODULEROOT=$NVBASE/$MODDIRNAME
|
||||||
|
else
|
||||||
|
$BOOTMODE && IMGNAME=magisk_merge.img || IMGNAME=magisk.img
|
||||||
|
IMG=$NVBASE/$IMGNAME
|
||||||
|
request_zip_size_check "$ZIPFILE"
|
||||||
|
mount_magisk_img
|
||||||
|
MODULEROOT=$MOUNTPATH
|
||||||
|
fi
|
||||||
|
|
||||||
|
MODID=`grep_prop id $TMPDIR/module.prop`
|
||||||
|
MODPATH=$MODULEROOT/$MODID
|
||||||
|
|
||||||
|
print_modname
|
||||||
|
|
||||||
|
ui_print "******************************"
|
||||||
|
ui_print "Powered by Magisk (@topjohnwu)"
|
||||||
|
ui_print "******************************"
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Install
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Create mod paths
|
||||||
|
rm -rf $MODPATH 2>/dev/null
|
||||||
|
mkdir -p $MODPATH
|
||||||
|
|
||||||
|
on_install
|
||||||
|
|
||||||
|
# Remove placeholder
|
||||||
|
rm -f $MODPATH/system/placeholder 2>/dev/null
|
||||||
|
|
||||||
|
# Custom uninstaller
|
||||||
|
[ -f $TMPDIR/uninstall.sh ] && cp -af $TMPDIR/uninstall.sh $MODPATH/uninstall.sh
|
||||||
|
|
||||||
|
# Auto Mount
|
||||||
|
if imageless_magisk; then
|
||||||
|
$SKIPMOUNT && touch $MODPATH/skip_mount
|
||||||
|
else
|
||||||
|
$SKIPMOUNT || touch $MODPATH/auto_mount
|
||||||
|
fi
|
||||||
|
|
||||||
|
# prop files
|
||||||
|
$PROPFILE && cp -af $TMPDIR/system.prop $MODPATH/system.prop
|
||||||
|
|
||||||
|
# Module info
|
||||||
|
cp -af $TMPDIR/module.prop $MODPATH/module.prop
|
||||||
|
if $BOOTMODE; then
|
||||||
|
# Update info for Magisk Manager
|
||||||
|
if imageless_magisk; then
|
||||||
|
mktouch $NVBASE/modules/$MODID/update
|
||||||
|
cp -af $TMPDIR/module.prop $NVBASE/modules/$MODID/module.prop
|
||||||
|
else
|
||||||
|
mktouch /sbin/.magisk/img/$MODID/update
|
||||||
|
cp -af $TMPDIR/module.prop /sbin/.magisk/img/$MODID/module.prop
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# post-fs-data mode scripts
|
||||||
|
$POSTFSDATA && cp -af $TMPDIR/post-fs-data.sh $MODPATH/post-fs-data.sh
|
||||||
|
|
||||||
|
# service mode scripts
|
||||||
|
$LATESTARTSERVICE && cp -af $TMPDIR/service.sh $MODPATH/service.sh
|
||||||
|
|
||||||
|
# Handle replace folders
|
||||||
|
for TARGET in $REPLACE; do
|
||||||
|
mktouch $MODPATH$TARGET/.replace
|
||||||
|
done
|
||||||
|
|
||||||
|
ui_print "- Setting permissions"
|
||||||
|
set_permissions
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Finalizing
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
cd /
|
||||||
|
imageless_magisk || unmount_magisk_img
|
||||||
|
$BOOTMODE || recovery_cleanup
|
||||||
|
rm -rf $TMPDIR $MOUNTPATH
|
||||||
|
|
||||||
|
ui_print "- Done"
|
||||||
|
exit 0
|
1
META-INF/com/google/android/updater-script
Normal file
1
META-INF/com/google/android/updater-script
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#MAGISK
|
BIN
binary/fusermount-arm
Executable file
BIN
binary/fusermount-arm
Executable file
Binary file not shown.
BIN
binary/fusermount-arm64
Executable file
BIN
binary/fusermount-arm64
Executable file
Binary file not shown.
BIN
binary/rclone-arm
Executable file
BIN
binary/rclone-arm
Executable file
Binary file not shown.
BIN
binary/rclone-arm64
Executable file
BIN
binary/rclone-arm64
Executable file
Binary file not shown.
BIN
binary/rclone-x64
Executable file
BIN
binary/rclone-x64
Executable file
Binary file not shown.
BIN
binary/rclone-x86
Executable file
BIN
binary/rclone-x86
Executable file
Binary file not shown.
5
changelog.md
Normal file
5
changelog.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# Changelog
|
||||||
|
## v1.1
|
||||||
|
* Initial release
|
||||||
|
* rclone mount
|
||||||
|
|
23
common/disable.sh
Normal file
23
common/disable.sh
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
#!/system/bin/sh
|
||||||
|
# Do NOT assume where your module will be located.
|
||||||
|
# ALWAYS use $MODDIR if you need to know where this script
|
||||||
|
# and module is placed.
|
||||||
|
# This will make sure your module will still work
|
||||||
|
# if Magisk change its mount point in the future
|
||||||
|
MODDIR=${0%/*}
|
||||||
|
MODDIR=""
|
||||||
|
#sleep 120
|
||||||
|
echo "UNmounting remotes..."
|
||||||
|
CONFIGFILE=/sdcard/rclone.conf
|
||||||
|
CLOUDROOTMOUNTPOINT=/mnt/cloud
|
||||||
|
mkdir -p $CLOUDROOTMOUNTPOINT
|
||||||
|
|
||||||
|
$MODDIR/system/bin/rclone listremotes --config ${CONFIGFILE}|cut -f1 -d: |
|
||||||
|
while read line; do
|
||||||
|
echo "UNmounting... $line"
|
||||||
|
umount -f ${CLOUDROOTMOUNTPOINT}/${line}
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "...done"
|
||||||
|
|
28
common/manual.sh
Normal file
28
common/manual.sh
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
#!/system/bin/sh
|
||||||
|
# Do NOT assume where your module will be located.
|
||||||
|
# ALWAYS use $MODDIR if you need to know where this script
|
||||||
|
# and module is placed.
|
||||||
|
# This will make sure your module will still work
|
||||||
|
# if Magisk change its mount point in the future
|
||||||
|
MODDIR=${0%/*}
|
||||||
|
MODDIR=""
|
||||||
|
#sleep 120
|
||||||
|
echo "mounting remotes..."
|
||||||
|
CONFIGFILE=/sdcard/rclone.conf
|
||||||
|
CLOUDROOTMOUNTPOINT=/mnt/cloud
|
||||||
|
mkdir -p $CLOUDROOTMOUNTPOINT
|
||||||
|
mkdir -p /storage/cache/
|
||||||
|
mkdir -p /storage/cache-backend/
|
||||||
|
|
||||||
|
#sh -c "$MODDIR/system/bin/rclone mount piyushDOTgarg_shopDOTmega: ${CLOUDROOTMOUNTPOINT}/piyushDOTgarg_shopDOTmega -vv --config ${CONFIGFILE} --attr-timeout 10m --cache-dir=/storage/cache --vfs-cache-mode writes --vfs-cache-max-age 168h0m0s --log-file /sdcard/dns.log --allow-other --gid 1015" &
|
||||||
|
|
||||||
|
$MODDIR/system/bin/rclone listremotes --config ${CONFIGFILE}|cut -f1 -d: |
|
||||||
|
while read line; do
|
||||||
|
echo "mounting... $line"
|
||||||
|
mkdir -p ${CLOUDROOTMOUNTPOINT}/${line}
|
||||||
|
sh -c "$MODDIR/system/bin/rclone mount ${line}: ${CLOUDROOTMOUNTPOINT}/${line} -vv --config ${CONFIGFILE} --attr-timeout 10m --cache-dir=/storage/cache --vfs-cache-mode writes --vfs-read-chunk-size 2M --vfs-read-chunk-size-limit 100M --vfs-cache-max-age 168h0m0s --cache-chunk-path /storage/cache-backend/ --cache-chunk-clean-interval 10m0s --log-file /sdcard/dns.log --allow-other --gid 1015 --daemon"
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "...done"
|
||||||
|
|
9
common/post-fs-data.sh
Executable file
9
common/post-fs-data.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/system/bin/sh
|
||||||
|
# Do NOT assume where your module will be located.
|
||||||
|
# ALWAYS use $MODDIR if you need to know where this script
|
||||||
|
# and module is placed.
|
||||||
|
# This will make sure your module will still work
|
||||||
|
# if Magisk change its mount point in the future
|
||||||
|
MODDIR=${0%/*}
|
||||||
|
|
||||||
|
# This script will be executed in post-fs-data mode
|
27
common/service.sh
Executable file
27
common/service.sh
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/system/bin/sh
|
||||||
|
# Do NOT assume where your module will be located.
|
||||||
|
# ALWAYS use $MODDIR if you need to know where this script
|
||||||
|
# and module is placed.
|
||||||
|
# This will make sure your module will still work
|
||||||
|
# if Magisk change its mount point in the future
|
||||||
|
MODDIR=${0%/*}
|
||||||
|
sleep 120
|
||||||
|
echo "mounting remotes..."
|
||||||
|
CONFIGFILE=/sdcard/rclone.conf
|
||||||
|
CLOUDROOTMOUNTPOINT=/mnt/cloud
|
||||||
|
mkdir -p $CLOUDROOTMOUNTPOINT
|
||||||
|
mkdir -p /storage/cache/
|
||||||
|
mkdir -p /storage/cache-backend/
|
||||||
|
|
||||||
|
#sh -c "$MODDIR/system/bin/rclone mount piyushDOTgarg_shopDOTmega: ${CLOUDROOTMOUNTPOINT}/piyushDOTgarg_shopDOTmega -vv --config ${CONFIGFILE} --attr-timeout 10m --cache-dir=/storage/cache --vfs-cache-mode writes --vfs-cache-max-age 168h0m0s --log-file /sdcard/dns.log --allow-other --gid 1015" &
|
||||||
|
|
||||||
|
$MODDIR/system/bin/rclone listremotes --config ${CONFIGFILE}|cut -f1 -d: |
|
||||||
|
while read line; do
|
||||||
|
echo "mounting... $line"
|
||||||
|
mkdir -p ${CLOUDROOTMOUNTPOINT}/${line}
|
||||||
|
sh -c "$MODDIR/system/bin/rclone mount ${line}: ${CLOUDROOTMOUNTPOINT}/${line} -vv --config ${CONFIGFILE} --attr-timeout 10m --cache-dir=/storage/cache --vfs-cache-mode writes --vfs-read-chunk-size 2M --vfs-read-chunk-size-limit 100M --vfs-cache-max-age 168h0m0s --cache-chunk-path /storage/cache-backend/ --cache-chunk-clean-interval 10m0s --log-file /sdcard/dns.log --allow-other --gid 1015" &
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "...done"
|
||||||
|
|
3
common/system.prop
Executable file
3
common/system.prop
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
# This file will be read by resetprop
|
||||||
|
# Example: Change dpi
|
||||||
|
# ro.sf.lcd_density=320
|
183
install.sh
Executable file
183
install.sh
Executable file
|
@ -0,0 +1,183 @@
|
||||||
|
##########################################################################################
|
||||||
|
#
|
||||||
|
# Magisk Module Installer Script
|
||||||
|
#
|
||||||
|
##########################################################################################
|
||||||
|
##########################################################################################
|
||||||
|
#
|
||||||
|
# Instructions:
|
||||||
|
#
|
||||||
|
# 1. Place your files into system folder (delete the placeholder file)
|
||||||
|
# 2. Fill in your module's info into module.prop
|
||||||
|
# 3. Configure and implement callbacks in this file
|
||||||
|
# 4. If you need boot scripts, add them into common/post-fs-data.sh or common/service.sh
|
||||||
|
# 5. Add your additional or modified system properties into common/system.prop
|
||||||
|
#
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Config Flags
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Set to true if you do *NOT* want Magisk to mount
|
||||||
|
# any files for you. Most modules would NOT want
|
||||||
|
# to set this flag to true
|
||||||
|
SKIPMOUNT=false
|
||||||
|
|
||||||
|
# Set to true if you need to load system.prop
|
||||||
|
PROPFILE=false
|
||||||
|
|
||||||
|
# Set to true if you need post-fs-data script
|
||||||
|
POSTFSDATA=false
|
||||||
|
|
||||||
|
# Set to true if you need late_start service script
|
||||||
|
LATESTARTSERVICE=true
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Replace list
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# List all directories you want to directly replace in the system
|
||||||
|
# Check the documentations for more info why you would need this
|
||||||
|
|
||||||
|
# Construct your list in the following format
|
||||||
|
# This is an example
|
||||||
|
REPLACE_EXAMPLE="
|
||||||
|
/system/app/Youtube
|
||||||
|
/system/priv-app/SystemUI
|
||||||
|
/system/priv-app/Settings
|
||||||
|
/system/framework
|
||||||
|
"
|
||||||
|
|
||||||
|
# Construct your own list here
|
||||||
|
REPLACE="
|
||||||
|
"
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
#
|
||||||
|
# Function Callbacks
|
||||||
|
#
|
||||||
|
# The following functions will be called by the installation framework.
|
||||||
|
# You do not have the ability to modify update-binary, the only way you can customize
|
||||||
|
# installation is through implementing these functions.
|
||||||
|
#
|
||||||
|
# When running your callbacks, the installation framework will make sure the Magisk
|
||||||
|
# internal busybox path is *PREPENDED* to PATH, so all common commands shall exist.
|
||||||
|
# Also, it will make sure /data, /system, and /vendor is properly mounted.
|
||||||
|
#
|
||||||
|
##########################################################################################
|
||||||
|
##########################################################################################
|
||||||
|
#
|
||||||
|
# The installation framework will export some variables and functions.
|
||||||
|
# You should use these variables and functions for installation.
|
||||||
|
#
|
||||||
|
# ! DO NOT use any Magisk internal paths as those are NOT public API.
|
||||||
|
# ! DO NOT use other functions in util_functions.sh as they are NOT public API.
|
||||||
|
# ! Non public APIs are not guranteed to maintain compatibility between releases.
|
||||||
|
#
|
||||||
|
# Available variables:
|
||||||
|
#
|
||||||
|
# MAGISK_VER (string): the version string of current installed Magisk
|
||||||
|
# MAGISK_VER_CODE (int): the version code of current installed Magisk
|
||||||
|
# BOOTMODE (bool): true if the module is currently installing in Magisk Manager
|
||||||
|
# MODPATH (path): the path where your module files should be installed
|
||||||
|
# TMPDIR (path): a place where you can temporarily store files
|
||||||
|
# ZIPFILE (path): your module's installation zip
|
||||||
|
# ARCH (string): the architecture of the device. Value is either arm, arm64, x86, or x64
|
||||||
|
# IS64BIT (bool): true if $ARCH is either arm64 or x64
|
||||||
|
# API (int): the API level (Android version) of the device
|
||||||
|
#
|
||||||
|
# Availible functions:
|
||||||
|
#
|
||||||
|
# ui_print <msg>
|
||||||
|
# print <msg> to console
|
||||||
|
# Avoid using 'echo' as it will not display in custom recovery's console
|
||||||
|
#
|
||||||
|
# abort <msg>
|
||||||
|
# print error message <msg> to console and terminate installation
|
||||||
|
# Avoid using 'exit' as it will skip the termination cleanup steps
|
||||||
|
#
|
||||||
|
# set_perm <target> <owner> <group> <permission> [context]
|
||||||
|
# if [context] is empty, it will default to "u:object_r:system_file:s0"
|
||||||
|
# this function is a shorthand for the following commands
|
||||||
|
# chown owner.group target
|
||||||
|
# chmod permission target
|
||||||
|
# chcon context target
|
||||||
|
#
|
||||||
|
# set_perm_recursive <directory> <owner> <group> <dirpermission> <filepermission> [context]
|
||||||
|
# if [context] is empty, it will default to "u:object_r:system_file:s0"
|
||||||
|
# for all files in <directory>, it will call:
|
||||||
|
# set_perm file owner group filepermission context
|
||||||
|
# for all directories in <directory> (including itself), it will call:
|
||||||
|
# set_perm dir owner group dirpermission context
|
||||||
|
#
|
||||||
|
##########################################################################################
|
||||||
|
##########################################################################################
|
||||||
|
# If you need boot scripts, DO NOT use general boot scripts (post-fs-data.d/service.d)
|
||||||
|
# ONLY use module scripts as it respects the module status (remove/disable) and is
|
||||||
|
# guaranteed to maintain the same behavior in future Magisk releases.
|
||||||
|
# Enable boot scripts by setting the flags in the config section above.
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Set what you want to display when installing your module
|
||||||
|
|
||||||
|
print_modname() {
|
||||||
|
ui_print " "
|
||||||
|
ui_print "*******************************"
|
||||||
|
ui_print "* rclone-mount *"
|
||||||
|
ui_print "* Magisk Module *"
|
||||||
|
ui_print "*******************************"
|
||||||
|
ui_print "* v1.1-alpha1 *"
|
||||||
|
ui_print "* rclone *"
|
||||||
|
ui_print "*******************************"
|
||||||
|
ui_print " "
|
||||||
|
}
|
||||||
|
|
||||||
|
# Copy/extract your module files into $MODPATH in on_install.
|
||||||
|
|
||||||
|
on_install() {
|
||||||
|
# The following is the default implementation: extract $ZIPFILE/system to $MODPATH
|
||||||
|
# Extend/change the logic to whatever you want
|
||||||
|
|
||||||
|
if [ "$ARCH" == "arm" ];then
|
||||||
|
BINARY_PATH=$TMPDIR/binary/rclone-arm
|
||||||
|
elif [ "$ARCH" == "arm64" ];then
|
||||||
|
BINARY_PATH=$TMPDIR/binary/rclone-arm64
|
||||||
|
elif [ "$ARCH" == "x86" ];then
|
||||||
|
BINARY_PATH=$TMPDIR/binary/rclone-x86
|
||||||
|
elif [ "$ARCH" == "x64" ];then
|
||||||
|
BINARY_PATH=$TMPDIR/binary/rclone-x64
|
||||||
|
fi
|
||||||
|
|
||||||
|
CONFIG_PATH=$TMPDIR/config
|
||||||
|
|
||||||
|
unzip -o "$ZIPFILE" 'binary/*' -d $TMPDIR 2>/dev/null
|
||||||
|
|
||||||
|
ui_print "* Creating binary path"
|
||||||
|
mkdir -p $MODPATH/system/bin 2>/dev/null
|
||||||
|
|
||||||
|
ui_print "* Copying $TMPDIR/binary/rclone-$ARCH binary"
|
||||||
|
cp -af $TMPDIR/binary/rclone-${ARCH} $MODPATH/system/bin/rclone
|
||||||
|
ui_print "* Copying $TMPDIR/binary/fusermount-$ARCH binary"
|
||||||
|
cp -af $TMPDIR/binary/fusermount-${ARCH} $MODPATH/system/bin/fusermount
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
# Only some special files require specific permissions
|
||||||
|
# This function will be called after on_install is done
|
||||||
|
# The default permissions should be good enough for most cases
|
||||||
|
|
||||||
|
|
||||||
|
set_permissions() {
|
||||||
|
# The following is the default rule, DO NOT remove
|
||||||
|
set_perm_recursive $MODPATH 0 0 0755 0644
|
||||||
|
set_perm $MODPATH/system/bin/rclone 0 0 0755
|
||||||
|
set_perm $MODPATH/system/bin/fusermount 0 0 0755
|
||||||
|
# Here are some examples:
|
||||||
|
# set_perm_recursive $MODPATH/system/lib 0 0 0755 0644
|
||||||
|
# set_perm $MODPATH/system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0
|
||||||
|
# set_perm $MODPATH/system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0
|
||||||
|
# set_perm $MODPATH/system/lib/libart.so 0 0 0644
|
||||||
|
}
|
||||||
|
|
||||||
|
# You can add more functions to assist your custom script code
|
6
module.prop
Executable file
6
module.prop
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
id=rclone-mount
|
||||||
|
name=rclone-mount
|
||||||
|
version=v1.1
|
||||||
|
versionCode=100
|
||||||
|
author=rclone
|
||||||
|
description=rclone mount
|
Loading…
Add table
Add a link
Reference in a new issue