You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
30 lines
1.1 KiB
Rust
30 lines
1.1 KiB
Rust
#![allow(dead_code)]
|
|
use base::const_format::concatcp;
|
|
|
|
#[path = "../../out/generated/flags.rs"]
|
|
mod flags;
|
|
|
|
// versions
|
|
pub use flags::*;
|
|
pub const MAGISK_FULL_VER: &str = concatcp!(MAGISK_VERSION, "(", MAGISK_VER_CODE, ")");
|
|
|
|
pub const APP_PACKAGE_NAME: &str = "com.topjohnwu.magisk";
|
|
|
|
pub const LOGFILE: &str = "/cache/magisk.log";
|
|
|
|
// data paths
|
|
pub const SECURE_DIR: &str = "/data/adb";
|
|
pub const MODULEROOT: &str = concatcp!(SECURE_DIR, "/modules");
|
|
|
|
// tmpfs paths
|
|
const INTERNAL_DIR: &str = ".magisk";
|
|
pub const LOG_PIPE: &str = concatcp!(INTERNAL_DIR, "/device/log");
|
|
pub const MAIN_CONFIG: &str = concatcp!(INTERNAL_DIR, "/config");
|
|
pub const PREINITMIRR: &str = concatcp!(INTERNAL_DIR, "/preinit");
|
|
pub const MODULEMNT: &str = concatcp!(INTERNAL_DIR, "/modules");
|
|
pub const WORKERDIR: &str = concatcp!(INTERNAL_DIR, "/worker");
|
|
pub const DEVICEDIR: &str = concatcp!(INTERNAL_DIR, "/device");
|
|
pub const PREINITDEV: &str = concatcp!(DEVICEDIR, "/preinit");
|
|
pub const ROOTOVL: &str = concatcp!(INTERNAL_DIR, "/rootdir");
|
|
pub const ROOTMNT: &str = concatcp!(ROOTOVL, "/.mount_list");
|