-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup-makefiles.sh
More file actions
38 lines (28 loc) · 843 Bytes
/
setup-makefiles.sh
File metadata and controls
38 lines (28 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Copyright (C) 2018 The LineageOS Project
# SPDX-License-Identifier: Apache-2.0
set -e
# Required!
VENDOR=samsung
DEVICE_COMMON=universal7570-common
DEVICE="on5xelte on5xelte"
# Load extractutils and do some sanity checks
MY_DIR="${BASH_SOURCE%/*}"
if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
LINEAGE_ROOT="$MY_DIR"/../../..
HELPER="$LINEAGE_ROOT"/vendor/lineage/build/tools/extract_utils.sh
if [ ! -f "$HELPER" ]; then
echo "Unable to find helper script at $HELPER"
exit 1
fi
. "$HELPER"
# Initialize the helper
setup_vendor "$DEVICE_COMMON" "$VENDOR" "$LINEAGE_ROOT" true
# Copyright headers and guards
write_headers "$DEVICE"
# The standard blobs
write_makefiles "$MY_DIR"/proprietary-files.txt true
# Offline charging
write_makefiles "$MY_DIR"/proprietary-files-lpm.txt true
# We are done!
write_footers