From 6d892d37ff672f049fb32b9284c90dee47d1cbb0 Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Tue, 29 Aug 2023 16:25:05 -0400 Subject: [PATCH] Add support for Magisk v26.2 There is nothing new that requires changes on the avbroot side. Signed-off-by: Andrew Gunnerson --- src/boot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot.rs b/src/boot.rs index 9562c76..0a2776e 100644 --- a/src/boot.rs +++ b/src/boot.rs @@ -108,7 +108,7 @@ impl MagiskRootPatcher { // RULESDEVICE config option, which stored the writable block device as an // rdev major/minor pair, which was not consistent across reboots and was // replaced by PREINITDEVICE - const VERS_SUPPORTED: &[Range] = &[25102..25207, 25211..26200]; + const VERS_SUPPORTED: &[Range] = &[25102..25207, 25211..26300]; const VER_PREINIT_DEVICE: Range = 25211..Self::VERS_SUPPORTED[Self::VERS_SUPPORTED.len() - 1].end; const VER_RANDOM_SEED: Range = 25211..26103;