device_lenovo_sdm710-common/setup-makefiles.sh

38 lines
722 B
Bash
Raw Normal View History

2019-08-29 05:37:42 -04:00
#!/bin/bash
#
# Copyright (C) 2018-2019 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
INITIAL_COPYRIGHT_YEAR=2019
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
LINEAGE_ROOT="${MY_DIR}/../../.."
2019-08-29 05:37:42 -04:00
HELPER="${LINEAGE_ROOT}/vendor/aosp/build/tools/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}" "${LINEAGE_ROOT}"
2019-08-29 05:37:42 -04:00
# Copyright 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