2017-12-25 18:12:40 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 The CyanogenMod Project
|
2021-05-24 15:02:45 +02:00
|
|
|
# Copyright (C) 2017-2020 The LineageOS Project
|
2017-12-25 18:12:40 +01:00
|
|
|
#
|
2021-05-24 15:02:45 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2017-12-25 18:12:40 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2018-07-19 12:48:02 +02:00
|
|
|
# Load extract_utils and do some sanity checks
|
|
|
|
MY_DIR="${BASH_SOURCE%/*}"
|
2021-05-24 15:02:45 +02:00
|
|
|
if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-05-24 15:02:45 +02:00
|
|
|
ANDROID_ROOT="${MY_DIR}/../../.."
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-05-24 15:02:45 +02:00
|
|
|
HELPER="${ANDROID_ROOT}/tools/extract-utils/extract_utils.sh"
|
|
|
|
if [ ! -f "${HELPER}" ]; then
|
|
|
|
echo "Unable to find helper script at ${HELPER}"
|
2018-07-19 12:48:02 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2021-05-24 15:02:45 +02:00
|
|
|
source "${HELPER}"
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-06-24 17:26:14 +02:00
|
|
|
# Initialize the helper for common
|
|
|
|
setup_vendor "${DEVICE_COMMON}" "${VENDOR}" "${ANDROID_ROOT}" true
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-05-24 15:02:45 +02:00
|
|
|
# Warning headers and guards
|
2021-06-24 17:26:14 +02:00
|
|
|
write_headers "gts3llte gts3lwifi"
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-06-24 17:26:14 +02:00
|
|
|
# The standard common blobs
|
2021-05-24 15:02:45 +02:00
|
|
|
write_makefiles "${MY_DIR}/proprietary-files.txt" true
|
2018-07-19 12:48:02 +02:00
|
|
|
|
|
|
|
# Finish
|
|
|
|
write_footers
|
2021-06-24 17:26:14 +02:00
|
|
|
|
|
|
|
if [ -s "${MY_DIR}/../${DEVICE}/proprietary-files.txt" ]; then
|
|
|
|
# Reinitialize the helper for device
|
|
|
|
setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}" false
|
|
|
|
|
|
|
|
# Warning headers and guards
|
|
|
|
write_headers
|
|
|
|
|
|
|
|
# The standard device blobs
|
|
|
|
write_makefiles "${MY_DIR}/../${DEVICE}/proprietary-files.txt" true
|
|
|
|
|
|
|
|
# Finish
|
|
|
|
write_footers
|
|
|
|
fi
|