a5xelte: Sync extractors with templates
[GitHub/LineageOS/android_device_samsung_a5xelte.git] / setup-makefiles.sh
CommitLineData
7c518c34 1#!/bin/bash
178a6416
VO
2#
3# Copyright (C) 2017-2019 The LineageOS Project
7c518c34
DW
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#
178a6416 9# http://www.apache.org/licenses/LICENSE-2.0
7c518c34
DW
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.
178a6416 16#
7c518c34
DW
17
18set -e
19
20VENDOR=samsung
178a6416 21DEVICE=a5xelte
7c518c34
DW
22
23export INITIAL_COPYRIGHT_YEAR=2017
24
178a6416 25# Load extract_utils and do some sanity checks
7c518c34 26MY_DIR="${BASH_SOURCE%/*}"
178a6416 27if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
7c518c34 28
178a6416 29LINEAGE_ROOT="${MY_DIR}/../../.."
7c518c34 30
178a6416
VO
31HELPER="${LINEAGE_ROOT}/vendor/lineage/build/tools/extract_utils.sh"
32if [ ! -f "${HELPER}" ]; then
33 echo "Unable to find helper script at ${HELPER}"
7c518c34
DW
34 exit 1
35fi
178a6416 36source "${HELPER}"
7c518c34
DW
37
38# Initialize the helper
178a6416 39setup_vendor "${DEVICE}" "${VENDOR}" "${LINEAGE_ROOT}"
7c518c34
DW
40
41# Copyright headers and guards
42write_headers "a5xelte"
43
44# The standard blobs
178a6416 45write_makefiles "${MY_DIR}/proprietary-files.txt" true
7c518c34 46
178a6416 47# Finish
7c518c34 48write_footers