manager: Update zakosign binary with support for arm32 architecture

This commit is contained in:
ShirkNeko
2025-08-14 13:07:58 +08:00
parent 57fcf86579
commit 11a628f536
5 changed files with 11 additions and 9 deletions

View File

@@ -415,7 +415,7 @@ NativeBridgeNP(getManagersList, jobject) {
}
NativeBridge(verifyModuleSignature, jboolean, jstring modulePath) {
#if defined(__aarch64__) || defined(_M_ARM64)
#if defined(__aarch64__) || defined(_M_ARM64) || defined(__arm__) || defined(_M_ARM)
if (!modulePath) {
LogDebug("verifyModuleSignature: modulePath is null");
return false;
@@ -428,7 +428,7 @@ NativeBridge(verifyModuleSignature, jboolean, jstring modulePath) {
LogDebug("verifyModuleSignature: path=%s, result=%d", cModulePath, result);
return result;
#else
LogDebug("verifyModuleSignature: not supported on non-arm64 architecture");
LogDebug("verifyModuleSignature: not supported on non-ARM architecture");
return false;
#endif
}