-
Notifications
You must be signed in to change notification settings - Fork 10
/
install.sh
executable file
·261 lines (237 loc) · 13.9 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
##########################################################################################
#
# 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.properly
#
##########################################################################################
##########################################################################################
# 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=true
# 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() {
version=$(sed -n "s/^version=//p" $TMPDIR/module.prop)
versionCode=$(sed -n "s/^versionCode=//p" $TMPDIR/module.prop)
ui_print "░░░░░░░░░░░░░░░░░░░░░░░▒▒█████▒▒▒░░░░░░░░░░░░░░░░░░░░"
ui_print "░░░░░░░░░░░░░░░░░▒▒██████████████████▒▒░░░░░░░░░░░░░░"
ui_print "░░░░░░░░░░░░░░█▒█▒▒▒██░░░░░░░░░██▒███████▒█░░░░░░░░░░"
ui_print "░░░░░░░░░░░░░▒█░░░░░░░░░░░░░░░░░░░░░▒▒██████░░░░░░░░░"
ui_print "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒████▒░░░░░░░"
ui_print "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒████▒░░░░░"
ui_print "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒████░░░░"
ui_print "░░░░░░░░░░░░░░░░░░░░░░██░░░░░░░██░░░░░░░░░░░░▒████░░░"
ui_print "░░░░░░░░░░░░░░░░░░░▒███▒░░░░░░░░▒██▒▒░░░░░░░░░▒███▒░░"
ui_print "░░░░░░░░░░░░░░░░░░▒████▒░░▒▒▒░▒░▒███▒░░░░░░░░░▒████░░"
ui_print "░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒███▒░▒░░████▒░░▒███▒░░░░░░░░▒████░░"
ui_print "░░██████████████████▒▒░░███████▒░░▒████████████████░░"
ui_print "░░██████████████████▒▒░░███████▒░░▒████████████████░░"
ui_print "░░▒███▒░░░░░░░░░░▒███▒▒▒▒░████░░░▒███▒░░░░░░░░░░░░░░░"
ui_print "░░░███▒░░░░░░░░░░░▒████▒▒░░░░░░▒▒███░░░░░░░░░░░░░░░░░"
ui_print "░░░████▒░░░░░░░░░░░▒▒███░░░░░░░░██▒▒░░░░░░░░░░░░░░░░░"
ui_print "░░░█████▒░░░░░░░░░░░░▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░"
ui_print "░░░░▒████▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░"
ui_print "░░░░░░█▒████▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░"
ui_print "░░░░░░░░▒█████▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░"
ui_print "░░░░░░░░░░▒▒█████▒█░░░░░░░░░░░░░░░░░░░▒▒▒░░░░░░░░░░░░"
ui_print "░░░░░░░░░░░░▒▒████████▒▒█▒▒▒▒▒▒█▒▒▒▒██▒▒░░░░░░░░░░░░░"
ui_print "░░░░░░░░░░░░░░░░░▒▒████████████████▒▒░░░░░░░░░░░░░░░░"
ui_print ""
ui_print " _____________________________________________________"
ui_print "| |"
ui_print "| > e M a g i s k < |"
ui_print "| |"
ui_print "| by The Pokemod Group |"
ui_print "| |"
ui_print "| |"
ui_print "| |"
ui_print " _____________________________________________________"
ui_print "| |"
ui_print "| Utility binaries, bash, pre-configs |"
ui_print "| and services for Atlas ATVs... all in one. |"
ui_print "| $version |"
ui_print "| |"
ui_print "| |"
ui_print "| by emi (@emi#0001) - emi@pokemod.dev |"
ui_print "| Pokemod.dev | Discord.gg/Pokemod |"
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
ui_print "- Extracting module files"
unzip -o "$ZIPFILE" 'system/*' -d $MODPATH >&2
unzip -o "$ZIPFILE" 'custom/*' -d $TMPDIR >&2
if [ -d /system/xbin ]; then
BIN=/system/xbin
mv $MODPATH/system/bin "$MODPATH$BIN"
else
BIN=/system/bin
fi
ui_print "- Setting BIN: $BIN."
# Avoids issues with grepping the version code from modules.prop:
touch $MODPATH/version_lock
echo "$versionCode" > $MODPATH/version_lock
ui_print "> Saved version_lock $versionCode"
# find $MODPATH -type f | sed 's/_update//'
# find $TMPDIR -type f | sed -e 's|/dev/tmp/||' -e 's|custom/|/sdcard/|'
if [ -d /sdcard ]; then
SDCARD=/sdcard
elif [ -d /storage/emulated/0 ]; then
SDCARD=/storage/emulated/0
fi
ui_print "- Setting SDCARD: $SDCARD."
sed -i "s|<SDCARD>|$SDCARD|g" $MODPATH/system/etc/mkshrc
sed -i "s|<BIN>|$BIN|g" $MODPATH/system/etc/mkshrc
sed -i "s|<SDCARD>|$SDCARD|g" $TMPDIR/custom/bashrc
sed -i "s|<SDCARD>|$SDCARD|g" $TMPDIR/custom/ATVServices.sh
for filepath in $TMPDIR/custom/*; do
filename=${filepath##*/}
[ "$filename" == "ATVServices.sh" ] && continue
# if [ -f "$SDCARD/.${filename}" ] || [ -d "$SDCARD/${filename}" ]]; then
# ui_print " $SDCARD/.${filename} is already intalled! Backing up to $SDCARD/EmagiskBackups/"
# mkdir -p "$SDCARD/EmagiskBackups"
# cp -rf "$SDCARD/.${filename}" "$SDCARD/EmagiskBackups/${filename}.bak"
# fi
ui_print " Copying ${filename} to $SDCARD/.${filename}"
cp -rf "$TMPDIR/custom/${filename}" "$SDCARD/.${filename}"
done
ui_print " "
ui_print " "
ui_print "================================================"
ui_print " Do you want to install ATV services?"
ui_print " Press VOLUME UP to SKIP INSTALLATION."
ui_print " Press VOLUME DOWN to INSTALL ATV Services."
ui_print " "
ui_print " After 10 seconds services will be installed!"
ui_print " "
timeout 10 /system/bin/getevent -lc 1 2>&1 | /system/bin/grep VOLUME >$TMPDIR/events
ui_print " "
if cat $TMPDIR/events | grep "VOLUMEUP"; then
ui_print " >>> Not installing ATV Services!"
# rm "$TMPDIR/module.prop"
PROPFILE=false
export PROPFILE=false
else
ui_print " >>> Installing ATV services..."
cp -rf "$TMPDIR/custom/ATVServices.sh" "$MODPATH/ATVServices.sh"
fi
ui_print "================================================"
}
# 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 1755 0744
# Here are some examples:
set_perm_recursive $MODPATH$BIN 0 0 1755 0777
# set_perm $MODPATH/$BIN/bash 0 0 1755 0644
# set_perm $MODPATH/$BIN/eventrec 0 0 1755 0644
# set_perm $MODPATH/$BIN/strace 0 0 1755 0644
# set_perm $MODPATH/$BIN/tcpdump 0 0 1755 0644
# set_perm $MODPATH/$BIN/nano 0 0 1755 0644
# set_perm $MODPATH/$BIN/nano.bin 0 0 1755 0644
}
# You can add more functions to assist your custom script code