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