blob: 7bf12282758c9c1e93a3714860b6df87ebf455d0 [file] [log] [blame]
Ricardo Cerqueiraaff5e542014-05-09 22:24:12 +01001#!/sbin/sh
2
3# Validate that the incoming OTA is compatible with an already-installed
4# system
5
Brint E. Kriebel84ec9f52014-09-24 12:46:09 -07006grep -q "Command:.*\"--wipe\_data\"" /tmp/recovery.log
7if [ $? -eq 0 ]; then
8 echo "Data will be wiped after install; skipping signature check..."
9 exit 0
10fi
11
Ricardo Cerqueiraaff5e542014-05-09 22:24:12 +010012if [ -f /data/system/packages.xml -a -f /tmp/releasekey ]; then
Brint E. Kriebel8cc39922014-07-11 18:44:15 -070013 relCert=$(grep -A3 'package name="com.android.htmlviewer"' /data/system/packages.xml | grep "cert index" | head -n 1 | sed -e 's|.*"\([[:digit:]][[:digit:]]*\)".*|\1|g')
Ricardo Cerqueiraaff5e542014-05-09 22:24:12 +010014
Ricardo Cerqueirad2248b22014-12-01 15:15:15 +000015 # Tools missing? Err on the side of caution and exit cleanly
16 if [ "z$relCert" == "z" ]; then exit 0; fi
17
Ricardo Cerqueiraaff5e542014-05-09 22:24:12 +010018 grep "cert index=\"$relCert\"" /data/system/packages.xml | grep -q `cat /tmp/releasekey`
19 if [ $? -ne 0 ]; then
20 echo "You have an installed system that isn't signed with this build's key, aborting..."
Ricardo Cerqueirad2248b22014-12-01 15:15:15 +000021 exit 124
Ricardo Cerqueiraaff5e542014-05-09 22:24:12 +010022 fi
23fi
24
25exit 0