From 76ff1ddcdaf62f9bdfc83f83509aabb8de631f5c Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Mon, 6 Nov 2023 16:40:14 -0500 Subject: [PATCH] boot.rs: Bump Magisk version upper bound to 26500 There are no upstream changes that impact avbroot. Signed-off-by: Andrew Gunnerson --- avbroot/src/boot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avbroot/src/boot.rs b/avbroot/src/boot.rs index acf3c19..cd08ca4 100644 --- a/avbroot/src/boot.rs +++ b/avbroot/src/boot.rs @@ -117,7 +117,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..26400]; + const VERS_SUPPORTED: &[Range] = &[25102..25207, 25211..26500]; const VER_PREINIT_DEVICE: Range = 25211..Self::VERS_SUPPORTED[Self::VERS_SUPPORTED.len() - 1].end; const VER_RANDOM_SEED: Range = 25211..26103;