blob: 4c15f0baaf87f023783d8e8ff0d765003d57b784 [file] [log] [blame]
Koushik Duttacdb63352010-06-09 15:49:44 -07001#!/sbin/sh
2mkdir -p /sd-ext
Koushik Dutta1741dcd2010-06-11 00:49:49 -07003rm /cache/recovery/command
4rm /cache/update.zip
5touch /tmp/.ignorebootmessage
Koushik Duttacdb63352010-06-09 15:49:44 -07006kill $(ps | grep /sbin/adbd)
7kill $(ps | grep /sbin/recovery)
Koushik Dutta5aaa8232010-07-20 16:23:18 -07008
Koushik Dutta852bb422010-07-24 11:18:00 -07009# On the Galaxy S, the recovery comes test signed, but the
10# recovery is not automatically restarted.
11if [ -f /init.smdkc110.rc ]
12then
13 /sbin/recovery &
14fi
15
Koushik Dutta1741dcd2010-06-11 00:49:49 -070016exit 1