From adf0014da210dd0e8cc3d2910fbace80af97a358 Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Mon, 4 Sep 2023 16:30:36 -0400 Subject: [PATCH] boot.rs: Allow Magisk 263xx There are no changes that break 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 121f9c4..46bcf1c 100644 --- a/avbroot/src/boot.rs +++ b/avbroot/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..26300]; + const VERS_SUPPORTED: &[Range] = &[25102..25207, 25211..26400]; const VER_PREINIT_DEVICE: Range = 25211..Self::VERS_SUPPORTED[Self::VERS_SUPPORTED.len() - 1].end; const VER_RANDOM_SEED: Range = 25211..26103;