-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustomize.sh
86 lines (69 loc) · 2.16 KB
/
customize.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
CONFIGFILE="/sdcard/busybox-magisk.conf"
# busybox's location wasn't changed since 18.1
# and is documented at [Internal Details](
# https://github.com/topjohnwu/Magisk/blob/master/docs/details.md#paths-in-sbin-tmpfs-overlay
# "Magisk/details.md at master · topjohnwu/Magisk")
# So we believe it is stable
BB="/sbin/.magisk/busybox/busybox"
BBPATH="$(dirname "$BB")"
# Follow [busybox-ndk](https://github.com/Magisk-Modules-Repo/busybox-ndk
# "Magisk-Modules-Repo/busybox-ndk: busybox-ndk")
if [ -d "/system/xbin" ]; then
BIN="xbin"
else
BIN="bin"
fi
on_install() {
local found
local installed=""
local applets="busybox $(busybox --list)"
ui_print "- Installing applets to /system/$BIN"
# Delete previous pending update
rm -rf "$MODPATH/system.new/$BIN"
mkdir -p "$MODPATH/system.new/$BIN"
for applet in $applets; do
if grep -qse "^\-${applet}$" "$CONFIGFILE"; then
ui_print "- Skip $applet for -$applet"
elif grep -qse "^\+${applet}$" "$CONFIGFILE"; then
ui_print "- Force install $applet for +$applet"
installed="$installed $applet"
ln_bb "$applet"
elif found="$(which_not_busybox "$applet")"; then
ui_print "- Skip $applet for $found"
else
installed="$installed $applet"
ln_bb "$applet"
fi
done
ui_print "- Applets installed:$installed"
}
which_not_busybox() {
local appletpath
local applet="$1"
local IFS=':'
for path in $PATH; do
appletpath="$path/$applet"
# Exclude previous installed applets
if [ \
-x "$appletpath" -a \
"$(realpath "$appletpath")" != "$(realpath "$BB")" \
]; then
echo "$appletpath"
return 0
fi
done
return 1
}
ln_bb() {
# Some devices don't have directories like /system/sbin and
# let Magisk "magic mount" them may cause stuck on boot
# So we install applets to /system/(x)bin
local applet="$1"
local applet_path="$MODPATH/system.new/$BIN/$applet"
ln -s "$BB" "$applet_path"
chmod -f 755 "$applet_path"
chown -fh 0 "$applet_path"
chgrp -fh 0 "$applet_path"
chcon -h 'u:object_r:system_file:s0' "$applet_path"
}
on_install