Commit 44b7a3c3 authored by topjohnwu's avatar topjohnwu

Only run bootsigner on Android 5.0+

Close #2712
parent 554ebe72
...@@ -438,8 +438,10 @@ install_magisk() { ...@@ -438,8 +438,10 @@ install_magisk() {
BOOTIMAGE=boot.img BOOTIMAGE=boot.img
fi fi
eval $BOOTSIGNER -verify < $BOOTIMAGE && BOOTSIGNED=true if [ $API -ge 21 ]; then
$BOOTSIGNED && ui_print "- Boot image is signed with AVB 1.0" eval $BOOTSIGNER -verify < $BOOTIMAGE && BOOTSIGNED=true
$BOOTSIGNED && ui_print "- Boot image is signed with AVB 1.0"
fi
$IS64BIT && mv -f magiskinit64 magiskinit 2>/dev/null || rm -f magiskinit64 $IS64BIT && mv -f magiskinit64 magiskinit 2>/dev/null || rm -f magiskinit64
......
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