Ai
1 Star 0 Fork 0

寥若繁星/xposed

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
install.sh 7.07 KB
一键复制 编辑 原始数据 按行查看 历史
topjohnwu 提交于 2019-05-01 11:56 +08:00 . Add Xposed files for SDK 21-27
##########################################################################################
#
# 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=true
# Set to true if you need late_start service script
LATESTARTSERVICE=false
##########################################################################################
# Replace list
##########################################################################################
# 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 "Xposed framework installer zip "
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
ui_print "- Extracting module files"
unzip -o "$ZIPFILE" "$API/$ARCH/*" -d $TMPDIR >&2
XPOSEDDIR=$TMPDIR/$API/$ARCH
[ -d $XPOSEDDIR ] || abort "! Unsupported device"
if [ $API -ge 26 ]; then
XVERSION="90-beta3"
XPOSEDBRIDGE="XposedBridge.90.jar"
else
XVERSION="89"
XPOSEDBRIDGE="XposedBridge.89.jar"
fi
ui_print "- Xposed version: $XVERSION"
ui_print "- Device platform: $ARCH"
ui_print "- Copying files"
mkdir -p $MODPATH/system/framework
mv $TMPDIR/$XPOSEDBRIDGE $MODPATH/system/framework/XposedBridge.jar
cp -af $XPOSEDDIR/system/. $MODPATH/system
cat << EOF > $MODPATH/xposed.prop
version=${XVERSION}
arch=${ARCH}
minsdk=${API}
maxsdk=${API}
EOF
[ $API -ge 26 ] && echo "requires:fbe_aware=1" >> $MODPATH/xposed.prop
}
# 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_recursive $MODPATH/system/bin 0 2000 0755 0755
set_perm_check $MODPATH/system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0
set_perm_check $MODPATH/system/bin/app_process64 0 2000 0755 u:object_r:zygote_exec:s0
set_perm_check $MODPATH/system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0
set_perm_check $MODPATH/system/bin/patchoat 0 2000 0755 u:object_r:zygote_exec:s0
set_perm_check $MODPATH/system/bin/dexoptanalyzer 0 2000 0755 u:object_r:dexoptanalyzer_exec:s0
set_perm_check $MODPATH/system/bin/profman 0 2000 0755 u:object_r:profman_exec:s0
}
# You can add more functions to assist your custom script code
set_perm_check() {
[ -f "$1" ] || return
set_perm "$@"
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/star_code/xposed.git
git@gitee.com:star_code/xposed.git
star_code
xposed
xposed
master

搜索帮助