mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-08-14 03:37:26 +00:00
Change flags
This commit is contained in:
@@ -44,7 +44,7 @@ LOCAL_SRC_FILES := \
|
||||
su/su_client.c \
|
||||
su/su_socket.c
|
||||
|
||||
LOCAL_CFLAGS := -Wno-implicit-exception-spec-mismatch -DDEBUG
|
||||
LOCAL_CFLAGS := -Wno-implicit-exception-spec-mismatch
|
||||
LOCAL_LDLIBS := -llog
|
||||
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
@@ -44,11 +44,11 @@ static void request_handler(int client) {
|
||||
su_daemon_receiver(client);
|
||||
break;
|
||||
case CHECK_VERSION:
|
||||
write_string(client, VERSION_STR);
|
||||
write_string(client, MAGISK_VER_STR);
|
||||
close(client);
|
||||
break;
|
||||
case CHECK_VERSION_CODE:
|
||||
write_int(client, VERSION_CODE);
|
||||
write_int(client, MAGISK_VER_CODE);
|
||||
close(client);
|
||||
break;
|
||||
case POST_FS:
|
||||
|
11
jni/magisk.h
11
jni/magisk.h
@@ -10,10 +10,13 @@
|
||||
#include <pthread.h>
|
||||
#include <android/log.h>
|
||||
|
||||
|
||||
#define VERSION_CODE 130
|
||||
#define VERSION 13.0
|
||||
#define VERSION_STR xstr(VERSION) ":MAGISK"
|
||||
#ifndef MAGISK_VER_CODE
|
||||
#define MAGISK_VER_CODE 99999
|
||||
#endif
|
||||
#ifndef MAGISK_VERSION
|
||||
#define MAGISK_VERSION VER_DEBUG
|
||||
#endif
|
||||
#define MAGISK_VER_STR xstr(MAGISK_VERSION) ":MAGISK"
|
||||
|
||||
#define str(a) #a
|
||||
#define xstr(a) str(a)
|
||||
|
@@ -58,7 +58,7 @@ int main(int argc, char *argv[]) {
|
||||
if (strcmp(arg, "magisk") == 0) {
|
||||
if (argc < 2) usage();
|
||||
if (strcmp(argv[1], "-v") == 0) {
|
||||
printf("Client: %s\n", VERSION_STR);
|
||||
printf("Client: %s\n", MAGISK_VER_STR);
|
||||
int fd = connect_daemon();
|
||||
write_int(fd, CHECK_VERSION);
|
||||
char *v = read_string(fd);
|
||||
|
2
jni/su
2
jni/su
Submodule jni/su updated: 4035d5b037...b499ac8aba
Reference in New Issue
Block a user