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
bdff9769
Commit
bdff9769
authored
Aug 08, 2018
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move remount,ro back to post-fs-data mode
parent
c61df75e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bootstages.c
native/jni/core/bootstages.c
+2
-2
No files found.
native/jni/core/bootstages.c
View file @
bdff9769
...
@@ -706,8 +706,6 @@ void startup() {
...
@@ -706,8 +706,6 @@ void startup() {
xsymlink
(
MIRRDIR
"/bin/busybox"
,
BBPATH
"/busybox"
);
xsymlink
(
MIRRDIR
"/bin/busybox"
,
BBPATH
"/busybox"
);
}
}
xmount
(
NULL
,
"/"
,
NULL
,
MS_REMOUNT
|
MS_RDONLY
,
NULL
);
// Start post-fs-data mode
// Start post-fs-data mode
execl
(
"/sbin/magisk.bin"
,
"magisk"
,
"--post-fs-data"
,
NULL
);
execl
(
"/sbin/magisk.bin"
,
"magisk"
,
"--post-fs-data"
,
NULL
);
}
}
...
@@ -720,6 +718,8 @@ void post_fs_data(int client) {
...
@@ -720,6 +718,8 @@ void post_fs_data(int client) {
// If post-fs-data mode is started, it means startup succeeded
// If post-fs-data mode is started, it means startup succeeded
setup_done
=
1
;
setup_done
=
1
;
xmount
(
NULL
,
"/"
,
NULL
,
MS_REMOUNT
|
MS_RDONLY
,
NULL
);
LOGI
(
"** post-fs-data mode running
\n
"
);
LOGI
(
"** post-fs-data mode running
\n
"
);
// Allocate buffer
// Allocate buffer
...
...
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