a7xelte: Add device hardware key layout
[GitHub/LineageOS/android_device_samsung_a7xelte.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=samsung
19 DEVICE_COMMON=a7xelte
20
21 export INITIAL_COPYRIGHT_YEAR=2017
22
23 # Load extractutils and do some sanity checks
24 MY_DIR="${BASH_SOURCE%/*}"
25 if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
26
27 LINEAGE_ROOT="$MY_DIR"/../../..
28
29 HELPER="$LINEAGE_ROOT"/vendor/lineage/build/tools/extract_utils.sh
30 if [ ! -f "$HELPER" ]; then
31 echo "Unable to find helper script at $HELPER"
32 exit 1
33 fi
34 . "$HELPER"
35
36 # Initialize the helper
37 setup_vendor "$DEVICE_COMMON" "$VENDOR" "$LINEAGE_ROOT" true
38
39 # Copyright headers and guards
40 write_headers "a7xelte"
41
42 # The standard blobs
43 write_makefiles "$MY_DIR"/proprietary-files.txt true
44
45 # Done
46 write_footers