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