Commit 6e5df1f0 authored by topjohnwu's avatar topjohnwu

Abort when unsupported dtb is detected

parent 9469e79e
......@@ -183,7 +183,15 @@ rm -f ramdisk.cpio.orig config magisk*.xz
#################
for dt in dtb kernel_dtb extra; do
[ -f $dt ] && ./magiskboot dtb $dt patch && ui_print "- Patch fstab in $dt"
if [ -f $dt ]; then
if ! ./magiskboot dtb $dt test; then
ui_print "! Unsupported boot image $dt"
abort "! Please restore back to stock boot image"
fi
if ./magiskboot dtb $dt patch; then
ui_print "- Patch fstab in boot image $dt"
fi
fi
done
if [ -f kernel ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment