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
|
|
|
|
|
2020-04-11 03:09:17 -04:00
|
|
|
DEVICE=kunlun2
|
|
|
|
VENDOR=lenovo
|
|
|
|
|
2019-08-29 05:37:42 -04:00
|
|
|
# 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"
|
|
|
|
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
|
|
|
|
2020-04-11 03:09:17 -04:00
|
|
|
# Initialize the helper
|
2021-01-23 09:29:17 -05:00
|
|
|
setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}"
|
2019-08-29 05:37:42 -04:00
|
|
|
|
2021-01-23 09:29:17 -05:00
|
|
|
# Warning headers and guards
|
2020-04-11 03:09:17 -04:00
|
|
|
write_headers
|
2019-08-29 05:37:42 -04:00
|
|
|
|
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
|