Did you ever figure out your issue? I am getting the same error using the provided img and also when creating my own with Magisk.I'm having the following problem, I don't know what i'm doing wrong. I patched the init_boot.img file myself in magisk and then tried to flash the patched image.
I do manage to pass the SafteyNet test, but I can't use, for example, Gpay.Flash the MODIFIED SafteyNet fix module by @kdrag0n from the attached files on this thread from within Magisk Modules
you're also using shamiko and putting apps on the denylist?I do manage to pass the SafteyNet test, but I can't use, for example, Gpay.
what can we do?
for sure! And was not good
For custom kernels, you need to disable verity and verification, at least for the time being. Work is still being done to see if they can be flashed without disabling those.Do I need to disable verity at some point? I remember it was important on Pixel 6 Pro but I see nothing about it now. When would I do it so I don't have to wipe my phone anymore?
So for monthly images from Google I don't need to worry about it like before?For custom kernels, you need to disable verity and verification, at least for the time being. Work is still being done to see if they can be flashed without disabling those.
If you're not using a custom kernel then you don't have to worry about it. Of course, if you do decide to use a custom kernel in the future and this requirement still exists, you'll have to perform a wipe.So for monthly images from Google I don't need to worry about it like before?
TBH I've lost root when I forgot to disable verity on my P6Pro and waited without root for P7 for a couple of months. So you're saying if I'm not using custom kernels it's not an issue anymore?
eio
message, although if you do end up getting for some reason there are other ways to get rid of it and that message is more of an annoyance than anything else.I did not disable this, and everything was fineDo I need to disable verity at some point? I remember it was important on Pixel 6 Pro but I see nothing about it now. When would I do it so I don't have to wipe my phone anymore?
.031 is the latest.![]()
How to download Android 13 for Google Pixel and other Android devices
Download the latest Android 13 release right now and give it a try!www.xda-developers.com
TD1A.220804.009.A2 — Unlocked
TD1A.220804.009.A5 — Japan
TD1A.220804.031 — Unlocked (post release)
Unlocked vs Unlocked (post release)?
You can't fastboot boot the init_boot.img, and on the Pixel 7 and Pro, it's the init_boot.img you need to patch with Magisk and flash too the init_boot partition, not the boot.img to the boot partition as on the Pixel 6/Pro/a and below.Just FYI for a safer way to use the OP provided patched image , make sure you have the magisk apk installed first and do "Fastboot boot " instead of "flash" as listed in OP.
Then when it boots use magisk app to direct install it will patch your boot image and you don't have to flash someone eles' boot image. Reboot and profit.
This is in reference to option 2 not 1
Really ok, I read in 7 someone had succuss and this is only way i have done it for my last 3-4 devices. mine is arriving tuesday.You can't fastboot boot the init_boot.img, and on the Pixel 7 and Pro, it's the init_boot.img you need to patch with Magisk and flash too the init_boot partition, not the boot.img to the boot partition as on the Pixel 6/Pro/a and below.
Several people tested trying to fastboot boot the init_boot.img, but no luck.
That's the correct size.Hey guys I've got a question. That init_boot file is only 8,192KB should it not be bigger then that? Or am I just so used to OnePlus using just the boot.img. Thanks for your help.
fastboot flash init_boot magisk_init_patched-25205_EfWOu.img
fastboot flash init_boot magisk_init_patched-25205_EfWOu.img
adb root
adb shell
mkdir -p /sdcard/dump
for file in /dev/block/bootdevice/by-name/*; do
if [ "${file##*/}" != "userdata" ]
then
echo Dumping "${file##*/}"
dd if=$file of=/sdcard/dump/"${file##*/}".img
fi
done