mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-06-12 13:17:39 +02:00
Preparation for dynamic tmpfs path
This commit is contained in:
@ -1,19 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <logging.hpp>
|
||||
#include <string>
|
||||
|
||||
#define MAIN_SOCKET "d30138f2310a9fb9c54a3e0c21f58591"
|
||||
#define JAVA_PACKAGE_NAME "com.topjohnwu.magisk"
|
||||
#define LOGFILE "/cache/magisk.log"
|
||||
#define UNBLOCKFILE "/dev/.magisk_unblock"
|
||||
#define DISABLEFILE "/cache/.disable_magisk"
|
||||
#define MAGISKTMP "/sbin/.magisk"
|
||||
#define MIRRDIR MAGISKTMP "/mirror"
|
||||
#define BLOCKDIR MAGISKTMP "/block"
|
||||
#define BBPATH MAGISKTMP "/busybox"
|
||||
#define MODULEMNT MAGISKTMP "/modules"
|
||||
#define ROOTOVL MAGISKTMP "/rootdir"
|
||||
#define ROOTMNT ROOTOVL "/.mount_list"
|
||||
#define SECURE_DIR "/data/adb"
|
||||
#define MODULEROOT SECURE_DIR "/modules"
|
||||
#define MODULEUPGRADE SECURE_DIR "/modules_update"
|
||||
@ -21,6 +15,16 @@
|
||||
#define MAGISKDB SECURE_DIR "/magisk.db"
|
||||
#define MANAGERAPK DATABIN "/magisk.apk"
|
||||
|
||||
// tmpfs paths
|
||||
extern std::string MAGISKTMP;
|
||||
#define INTLROOT ".magisk"
|
||||
#define MIRRDIR INTLROOT "/mirror"
|
||||
#define BLOCKDIR INTLROOT "/block"
|
||||
#define MODULEMNT INTLROOT "/modules"
|
||||
#define BBPATH INTLROOT "/busybox"
|
||||
#define ROOTOVL INTLROOT "/rootdir"
|
||||
#define ROOTMNT ROOTOVL "/.mount_list"
|
||||
|
||||
constexpr const char *applet_names[] = { "su", "resetprop", "magiskhide", nullptr };
|
||||
|
||||
// Multi-call entrypoints
|
||||
|
Reference in New Issue
Block a user