From db2ddf15adbecd45c023688a4a2bf6c683ebea34 Mon Sep 17 00:00:00 2001 From: backslashxx <118538522+backslashxx@users.noreply.github.com> Date: Thu, 14 Nov 2024 12:05:48 +0800 Subject: [PATCH] KernelSU v1.0.2+magic Removed/Skipped: (-1) [1.0] Drop Non-GKI Support (tiann#1483) - upstream commit: tiann@898e9d4 - upstream policy change tiann#1705 Added from 5ec1cff/KernelSU @ https://github.com/5ec1cff/KernelSU/commit/d56711cdd343b7777ba69866528261d1d91363b3 (+28) Update build-manager.yml not build lkm when build manager also do not build ksud for other platform allow build lkm manually implement magic mount no need to deny relabel restorecon: set adb_file to system_file for module files magic_mount: use trusted.overlay.opaque chore: fmt magic_mount: supports whiteout ci: set correct paths chore: refine code magic_mount: fix log: make verbose logging optional magic_mount: refine ksud: fix disable / enable modules ksud: fix odm not magic-mounted ksubot: make MESSAGE_THREAD_ID optional ci: use var for chat id manager: no need to check overlayfs ksud: fix partition link ksud: fix clone symlink ksud: refine tmpfs Auto push lkms to branch `LKM` Update build-lkm.yml Update build-lkm.yml Build manager with pre-built LKMs (#4) remove devpts hook Added from: https://github.com/tiann/KernelSU/pull/2273 (+1) Update Busybox Added: personal changes (+9) kernel/ksu.c: provide dummy ksu_handle_devpts kernel: expose allowlist workaround as Kconfig option kernel/core_hook.c: use upstream ksu_umount_mnt kernel: require path_umount backporting workflows: debloat dummy.keystore manager: failure mode dummy demo manager: unofficial build KernelSU v1.0.2+magic Warning: Managers built from this repo has a known keystore. See dummy.keystore. Make sure to also chant, "thank you 5ec1cff" before you sleep. Signed-off-by: backslashxx <118538522+backslashxx@users.noreply.github.com> --- kernel/Makefile | 2 +- manager/build.gradle.kts | 4 ++-- userspace/ksud/build.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel/Makefile b/kernel/Makefile index 296e2ce80bb3..adc8bc408b21 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -21,7 +21,7 @@ ifeq ($(shell test -e $(srctree)/$(src)/../.git; echo $$?),0) $(shell cd $(srctree)/$(src); /usr/bin/env PATH="$$PATH":/usr/bin:/usr/local/bin [ -f ../.git/shallow ] && git fetch --unshallow) KSU_GIT_VERSION := $(shell cd $(srctree)/$(src); /usr/bin/env PATH="$$PATH":/usr/bin:/usr/local/bin git rev-list --count HEAD) # ksu_version: major * 10000 + git version + 200 for historical reasons -$(eval KSU_VERSION=$(shell expr 10000 + $(KSU_GIT_VERSION) + 200)) +$(eval KSU_VERSION=$(shell expr 10000 + $(KSU_GIT_VERSION) + 163)) $(info -- KernelSU version: $(KSU_VERSION)) ccflags-y += -DKSU_VERSION=$(KSU_VERSION) else # If there is no .git file, the default version will be passed. diff --git a/manager/build.gradle.kts b/manager/build.gradle.kts index 3c4f02e7faef..49ab737f678b 100644 --- a/manager/build.gradle.kts +++ b/manager/build.gradle.kts @@ -58,7 +58,7 @@ fun getGitDescribe(): String { fun getVersionCode(): Int { val commitCount = getGitCommitCount() val major = 1 - return major * 10000 + commitCount + 200 + return major * 10000 + commitCount + 163 } fun getVersionName(): String { @@ -95,4 +95,4 @@ subprojects { } } } -} \ No newline at end of file +} diff --git a/userspace/ksud/build.rs b/userspace/ksud/build.rs index 021418acf722..70ee6666dba9 100644 --- a/userspace/ksud/build.rs +++ b/userspace/ksud/build.rs @@ -15,7 +15,7 @@ fn get_git_version() -> Result<(u32, String), std::io::Error> { .trim() .parse() .map_err(|_| std::io::Error::new(std::io::ErrorKind::Other, "Failed to parse git count"))?; - let version_code = 10000 + 200 + version_code; // For historical reasons + let version_code = 10000 + 163 + version_code; // For historical reasons let version_name = String::from_utf8( Command::new("git")