2017-12-25 18:12:40 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 The CyanogenMod Project
|
2021-05-10 16:01:39 +02:00
|
|
|
# Copyright (C) 2017-2020 The LineageOS Project
|
2017-12-25 18:12:40 +01:00
|
|
|
#
|
2021-05-10 16:01:39 +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
|
|
|
DEVICE=gts3llte
|
|
|
|
VENDOR=samsung
|
2017-12-25 18:12:40 +01:00
|
|
|
|
2018-07-19 12:48:02 +02:00
|
|
|
# Load extract_utils and do some sanity checks
|
|
|
|
MY_DIR="${BASH_SOURCE%/*}"
|
2021-05-10 16:01:39 +02:00
|
|
|
if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-05-10 16:01:39 +02:00
|
|
|
ANDROID_ROOT="${MY_DIR}/../../.."
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-05-10 16:01:39 +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-10 16:01:39 +02:00
|
|
|
source "${HELPER}"
|
2018-07-19 12:48:02 +02:00
|
|
|
|
|
|
|
# Initialize the helper
|
2021-05-10 16:01:39 +02:00
|
|
|
setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}"
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-05-10 16:01:39 +02:00
|
|
|
# Warning headers and guards
|
|
|
|
write_headers
|
2018-07-19 12:48:02 +02:00
|
|
|
|
2021-05-10 16:01:39 +02:00
|
|
|
write_makefiles "${MY_DIR}/proprietary-files.txt" true
|
2018-07-19 12:48:02 +02:00
|
|
|
|
|
|
|
# Finish
|
|
|
|
write_footers
|