2019-08-29 05:37:42 -04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2021-01-23 09:29:17 -05:00
|
|
|
# Copyright (C) 2016 The CyanogenMod Project
|
|
|
|
# Copyright (C) 2017-2020 The LineageOS Project
|
2019-08-29 05:37:42 -04:00
|
|
|
#
|
2020-04-11 03:09:17 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2019-08-29 05:37:42 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Load extract_utils and do some sanity checks
|
|
|
|
MY_DIR="${BASH_SOURCE%/*}"
|
2019-03-22 18:37:05 -04:00
|
|
|
if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
|
2019-08-29 05:37:42 -04:00
|
|
|
|
2021-01-23 09:29:17 -05:00
|
|
|
ANDROID_ROOT="${MY_DIR}/../../.."
|
2019-08-29 05:37:42 -04:00
|
|
|
|
2021-01-23 09:29:17 -05:00
|
|
|
HELPER="${ANDROID_ROOT}/tools/extract-utils/extract_utils.sh"
|
2021-07-24 09:38:35 -04:00
|
|
|
if [ ! -f "${HELPER}" ]; then
|
|
|
|
echo "Unable to find helper script at ${HELPER}"
|
2019-08-29 05:37:42 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2019-03-22 18:37:05 -04:00
|
|
|
source "${HELPER}"
|
2019-08-29 05:37:42 -04:00
|
|
|
|
2021-07-24 09:38:35 -04:00
|
|
|
# Initialize the helper for common
|
|
|
|
setup_vendor "${DEVICE_COMMON}" "${VENDOR}" "${ANDROID_ROOT}" true
|
2019-08-29 05:37:42 -04:00
|
|
|
|
2021-01-23 09:29:17 -05:00
|
|
|
# Warning headers and guards
|
2021-08-01 16:25:35 -04:00
|
|
|
write_headers "kunlun2 kunlun2_row jd2019"
|
2019-08-29 05:37:42 -04:00
|
|
|
|
2021-07-24 09:38:35 -04:00
|
|
|
# The standard common blobs
|
2019-03-22 18:37:05 -04:00
|
|
|
write_makefiles "${MY_DIR}/proprietary-files.txt" true
|
2019-08-29 05:37:42 -04:00
|
|
|
|
2019-03-22 18:37:05 -04:00
|
|
|
# Finish
|
2019-08-29 05:37:42 -04:00
|
|
|
write_footers
|
2021-07-24 09:38:35 -04: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
|