mirror of
https://github.com/topjohnwu/Magisk
synced 2024-11-14 22:28:37 +01:00
Change flags
This commit is contained in:
parent
e9afc15719
commit
102a7f8723
@ -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
@ -1 +1 @@
|
||||
Subproject commit 4035d5b0379ddb69ce037c54587bd222710d0396
|
||||
Subproject commit b499ac8abacc9d009d110146e2f681a9b0a66f19
|
Loading…
Reference in New Issue
Block a user