Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
9a0b26e0
Commit
9a0b26e0
authored
Sep 15, 2017
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proper FBE support
parent
b805b96e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
MagiskManager
MagiskManager
+1
-1
Android.mk
jni/Android.mk
+0
-1
bootstages.c
jni/daemon/bootstages.c
+2
-0
su
jni/su
+1
-1
No files found.
MagiskManager
@
b4ecd93f
Subproject commit b
362c0ef3880a0044978de9a5207b4a50f7efc30
Subproject commit b
4ecd93f1c55eef81b8973c3470af42992833019
jni/Android.mk
View file @
9a0b26e0
...
...
@@ -53,7 +53,6 @@ LOCAL_SRC_FILES := \
su/su.c \
su/activity.c \
su/db.c \
su/misc.c \
su/pts.c \
su/su_daemon.c \
su/su_socket.c
...
...
jni/daemon/bootstages.c
View file @
9a0b26e0
...
...
@@ -581,6 +581,8 @@ void post_fs_data(int client) {
bin_path
=
"/cache/data_bin"
;
else
if
(
access
(
"/data/data/com.topjohnwu.magisk/install"
,
F_OK
)
==
0
)
bin_path
=
"/data/data/com.topjohnwu.magisk/install"
;
else
if
(
access
(
"/data/user_de/0/com.topjohnwu.magisk/install"
,
F_OK
)
==
0
)
bin_path
=
"/data/user_de/0/com.topjohnwu.magisk/install"
;
if
(
bin_path
)
{
exec_command_sync
(
"rm"
,
"-rf"
,
DATABIN
,
NULL
);
exec_command_sync
(
"cp"
,
"-r"
,
bin_path
,
DATABIN
,
NULL
);
...
...
su
@
c912c192
Subproject commit c
66632227b69ed4ded45518852474592a4b3bca8
Subproject commit c
912c192e0d03119a14d7b772caa5d77bc4b7999
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment