update wifi hal for oreo
[GitHub/mt8127/android_device_alcatel_ttab.git] / setup-makefiles.sh
CommitLineData
f3fa1980 1#!/bin/bash
8d9f5ac0 2# Copyright (C) 2017 The LineageOS Project
f3fa1980
S
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
8d9f5ac0 16set -e
f3fa1980 17
8d9f5ac0 18VENDOR=alcatel
f6aca02c 19DEVICE_COMMON=ttab
f3fa1980 20
8d9f5ac0
S
21# Load extractutils and do some sanity checks
22MY_DIR="${BASH_SOURCE%/*}"
23if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
f3fa1980 24
8d9f5ac0 25LINEAGE_ROOT="$MY_DIR"/../../..
f3fa1980 26
8d9f5ac0
S
27HELPER="$LINEAGE_ROOT"/vendor/cm/build/tools/extract_utils.sh
28if [ ! -f "$HELPER" ]; then
29 echo "Unable to find helper script at $HELPER"
30 exit 1
31fi
32. "$HELPER"
f3fa1980 33
8d9f5ac0 34# Initialize the helper
f6aca02c 35setup_vendor "$DEVICE_COMMON" "$VENDOR" "$LINEAGE_ROOT" true
f3fa1980 36
8d9f5ac0
S
37# Copyright headers and guards
38write_headers "ttab"
f3fa1980 39
8d9f5ac0
S
40# The standard blobs
41write_makefiles "$MY_DIR"/proprietary-files.txt
f3fa1980 42
8d9f5ac0
S
43# Done
44write_footers