We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aedb8f3 commit 7060eb4Copy full SHA for 7060eb4
1 file changed
module/customize.sh
@@ -1,7 +1,13 @@
1
+# Conflict with APatch
2
if [ "$APATCH" ]; then
3
abort "! APatch is unsupported"
4
fi
5
6
+# We only support arm64
7
+if [ "$ARCH" != "arm64" ]; then
8
+ abort "! Only arm64 is supported"
9
+fi
10
+
11
set_perm_recursive "$MODPATH/bin" 0 2000 0755 0755
12
13
mkdir -p /data/adb/kp-next
0 commit comments