device_lenovo_sdm710-common/setup-makefiles.sh

37 lines
728 B
Bash
Raw Normal View History

2019-08-29 05:37:42 -04:00
#!/bin/bash
#
# Copyright (C) 2016 The CyanogenMod Project
# Copyright (C) 2017-2020 The LineageOS Project
2019-08-29 05:37:42 -04:00
#
# SPDX-License-Identifier: Apache-2.0
2019-08-29 05:37:42 -04:00
#
set -e
DEVICE=kunlun2
VENDOR=lenovo
2019-08-29 05:37:42 -04:00
# Load extract_utils and do some sanity checks
MY_DIR="${BASH_SOURCE%/*}"
if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
2019-08-29 05:37:42 -04:00
ANDROID_ROOT="${MY_DIR}/../../.."
2019-08-29 05:37:42 -04: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
source "${HELPER}"
2019-08-29 05:37:42 -04:00
# Initialize the helper
setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}"
2019-08-29 05:37:42 -04:00
# Warning headers and guards
write_headers
2019-08-29 05:37:42 -04:00
write_makefiles "${MY_DIR}/proprietary-files.txt" true
2019-08-29 05:37:42 -04:00
# Finish
2019-08-29 05:37:42 -04:00
write_footers