summaryrefslogtreecommitdiff
path: root/installer/db845c/recovery.sh
blob: 20fd45c1af690045386510ff7e36a476f5f71a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash

INSTALLER_DIR="`dirname ${0}`"

QDL="`readlink -f ${INSTALLER_DIR}/qdl`"
FIRMWARE_DIR="dragonboard-845c-bootloader-ufs-aosp"

# for cases that don't run "lunch db845c-userdebug"
if [ -z "${ANDROID_BUILD_TOP}" ]; then
    ANDROID_BUILD_TOP=${INSTALLER_DIR}/../../../../../
    ANDROID_PRODUCT_OUT="${ANDROID_BUILD_TOP}/out/target/product/db845c"
fi

if [ ! -d "${ANDROID_PRODUCT_OUT}" ]; then
    echo "RECOVERY: error in locating out directory, check if it exist"
    exit
fi

echo "android out dir:${ANDROID_PRODUCT_OUT}"

# TODO: Pull one-time recovery/qdl path out of standard install
# Flash bootloader firmware files
if [ ! -d "${INSTALLER_DIR}/${FIRMWARE_DIR}/" ]; then
    echo "RECOVERY: No firmware directory? Make sure binaries have been provided"
    exit
fi

pushd "${INSTALLER_DIR}/${FIRMWARE_DIR}" > /dev/null
sudo "${QDL}" prog_firehose_ddr.elf rawprogram[012345].xml patch[012345].xml
popd > /dev/null

echo
echo
echo "RECOVERY: Please boot the db845c into fastboot mode, and use the flash-all-aosp.sh script!"
echo