metaovl: Fix incorrect permission, Add updateJson and changelog

This commit is contained in:
weishu
2025-11-21 10:06:12 +08:00
committed by ShirkNeko
parent 5a6ab43ea4
commit 078ffdb5e1
6 changed files with 49 additions and 6 deletions

View File

@@ -0,0 +1,4 @@
# v1.1.0 Changelog
Fix bootloop

View File

@@ -67,10 +67,11 @@ copy_selinux_contexts() {
post_install_to_image() {
ui_print "- Copying module content to image"
set_perm_recursive "$MNT_DIR" 0 0 0755 0644
set_perm "$MNT_DIR" 0 0 0755 0644
MOD_IMG_DIR="$MNT_DIR/$MODID"
mkdir -p "$MOD_IMG_DIR"
set_perm "$MOD_IMG_DIR" 0 0 0755 0644
# Move all partition directories
for partition in system vendor product system_ext odm oem; do

View File

@@ -1,8 +1,8 @@
id=meta-overlayfs
metamodule=1
name=OverlayFS MetaModule
version=1.0.0
versionCode=1
version=1.1.0
versionCode=1100
author=KernelSU Developers
description=An implementation of a metamodule using OverlayFS for KernelSU
updateJson=https://raw.githubusercontent.com/tiann/KernelSU/main/userspace/meta-overlayfs/update.json
updateJson=https://raw.githubusercontent.com/tiann/KernelSU/refs/heads/main/userspace/meta-overlayfs/metamodule/update.json

View File

@@ -0,0 +1,6 @@
{
"version": "1.1.0",
"versionCode": 1100,
"zipUrl": "https://github.com/tiann/KernelSU/releases/download/v2.1.2/meta-overlayfs-v1.1.0.zip",
"changelog": "https://github.com/tiann/KernelSU/releases/download/v2.1.2/meta-overlayfs-changelog.md"
}