Skip to content

Commit 4c1469f

Browse files
committed
KernelSU v1.0.2+magic
Removed/Skipped: (-1) [1.0] Drop Non-GKI Support (tiann#1483) - upstream commit: tiann/KernelSU@898e9d4 - upstream policy change tiann#1705 Added from 5ec1cff/KernelSU @ 5ec1cff/KernelSU@d56711c (+27) 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 (tiann#4) Added from: tiann#2273 (+1) Update Busybox Added: personal changes (+9) ksud: add KSU_MAGIC_MOUNT to env 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 <[email protected]>
1 parent 1238f23 commit 4c1469f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

kernel/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ifeq ($(shell test -e $(srctree)/$(src)/../.git; echo $$?),0)
2121
$(shell cd $(srctree)/$(src); /usr/bin/env PATH="$$PATH":/usr/bin:/usr/local/bin [ -f ../.git/shallow ] && git fetch --unshallow)
2222
KSU_GIT_VERSION := $(shell cd $(srctree)/$(src); /usr/bin/env PATH="$$PATH":/usr/bin:/usr/local/bin git rev-list --count HEAD)
2323
# ksu_version: major * 10000 + git version + 200 for historical reasons
24-
$(eval KSU_VERSION=$(shell expr 10000 + $(KSU_GIT_VERSION) + 200))
24+
$(eval KSU_VERSION=$(shell expr 10000 + $(KSU_GIT_VERSION) + 164))
2525
$(info -- KernelSU version: $(KSU_VERSION))
2626
ccflags-y += -DKSU_VERSION=$(KSU_VERSION)
2727
else # If there is no .git file, the default version will be passed.

manager/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fun getGitDescribe(): String {
5858
fun getVersionCode(): Int {
5959
val commitCount = getGitCommitCount()
6060
val major = 1
61-
return major * 10000 + commitCount + 200
61+
return major * 10000 + commitCount + 164
6262
}
6363

6464
fun getVersionName(): String {
@@ -95,4 +95,4 @@ subprojects {
9595
}
9696
}
9797
}
98-
}
98+
}

userspace/ksud/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fn get_git_version() -> Result<(u32, String), std::io::Error> {
1515
.trim()
1616
.parse()
1717
.map_err(|_| std::io::Error::new(std::io::ErrorKind::Other, "Failed to parse git count"))?;
18-
let version_code = 10000 + 200 + version_code; // For historical reasons
18+
let version_code = 10000 + 164 + version_code; // For historical reasons
1919

2020
let version_name = String::from_utf8(
2121
Command::new("git")

0 commit comments

Comments
 (0)