mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-25 02:55:33 +00:00
Add new commandline option to get tmpfs root
This commit is contained in:
parent
915fd3020b
commit
ee1f45aa91
@ -27,19 +27,19 @@ Options:
|
|||||||
--list list all available applets
|
--list list all available applets
|
||||||
--daemon manually start magisk daemon
|
--daemon manually start magisk daemon
|
||||||
--remove-modules remove all modules and reboot
|
--remove-modules remove all modules and reboot
|
||||||
--[init trigger] start service for init trigger
|
|
||||||
|
|
||||||
Advanced Options (Internal APIs):
|
Advanced Options (Internal APIs):
|
||||||
|
--[init trigger] start service for init trigger
|
||||||
|
Supported init triggers:
|
||||||
|
post-fs-data, service, boot-complete
|
||||||
--unlock-blocks set BLKROSET flag to OFF for all block devices
|
--unlock-blocks set BLKROSET flag to OFF for all block devices
|
||||||
--restorecon restore selinux context on Magisk files
|
--restorecon restore selinux context on Magisk files
|
||||||
--clone-attr SRC DEST clone permission, owner, and selinux context
|
--clone-attr SRC DEST clone permission, owner, and selinux context
|
||||||
--clone SRC DEST clone SRC to DEST
|
--clone SRC DEST clone SRC to DEST
|
||||||
--sqlite SQL exec SQL commands to Magisk database
|
--sqlite SQL exec SQL commands to Magisk database
|
||||||
|
--path print internal tmpfs mount path
|
||||||
|
|
||||||
Supported init triggers:
|
Available applets:
|
||||||
post-fs-data, service, boot-complete
|
|
||||||
|
|
||||||
Supported applets:
|
|
||||||
)EOF");
|
)EOF");
|
||||||
|
|
||||||
for (int i = 0; applet_names[i]; ++i)
|
for (int i = 0; applet_names[i]; ++i)
|
||||||
@ -115,6 +115,10 @@ int magisk_main(int argc, char *argv[]) {
|
|||||||
int fd = connect_daemon();
|
int fd = connect_daemon();
|
||||||
write_int(fd, REMOVE_MODULES);
|
write_int(fd, REMOVE_MODULES);
|
||||||
return read_int(fd);
|
return read_int(fd);
|
||||||
|
} else if (argv[1] == "--path"sv) {
|
||||||
|
// TODO: hardcode /sbin for now, actual logic will be used for Android 11
|
||||||
|
printf("/sbin\n");
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
#if 0
|
#if 0
|
||||||
/* Entry point for testing stuffs */
|
/* Entry point for testing stuffs */
|
||||||
|
Loading…
Reference in New Issue
Block a user