exynos9610: exynos-thermald: disable logging
[GitHub/moto-9609/android_device_motorola_exynos9610-common.git] / setup-makefiles.sh
1 #!/bin/bash
2 #
3 # Copyright (C) 2017-2020 The LineageOS Project
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 set -e
19
20 VENDOR=motorola
21 DEVICE_COMMON=exynos9610-common
22
23 export INITIAL_COPYRIGHT_YEAR=2020
24
25 # Load extract_utils and do some sanity checks
26 MY_DIR="${BASH_SOURCE%/*}"
27 if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
28
29 LINEAGE_ROOT="${MY_DIR}/../../.."
30
31 HELPER="${LINEAGE_ROOT}/vendor/lineage/build/tools/extract_utils.sh"
32 if [ ! -f "${HELPER}" ]; then
33 echo "Unable to find helper script at ${HELPER}"
34 exit 1
35 fi
36 source "${HELPER}"
37
38 # Initialize the helper
39 setup_vendor "${DEVICE_COMMON}" "${VENDOR}" "${LINEAGE_ROOT}" true
40
41 # Copyright headers and guards
42 write_headers "kane troika"
43
44 # The standard blobs
45 write_makefiles "${MY_DIR}/proprietary-files.txt" true
46 write_makefiles "${MY_DIR}/proprietary-files-vendor.txt" true
47
48 # Finish
49 write_footers