2016-10-30 07:20:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 The CyanogenMod Project
|
2017-08-05 05:28:21 +00:00
|
|
|
# Copyright (C) 2017 The LineageOS Project
|
2016-10-30 07:20:13 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
2017-08-05 05:28:21 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2016-10-30 07:20:13 +00:00
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2018-03-19 13:33:18 +00:00
|
|
|
DEVICE_COMMON=msm8937-common
|
2016-10-30 07:20:13 +00:00
|
|
|
VENDOR=xiaomi
|
|
|
|
|
2018-01-13 18:19:54 +00:00
|
|
|
INITIAL_COPYRIGHT_YEAR=2018
|
2017-08-05 05:28:21 +00:00
|
|
|
|
|
|
|
# Load extract_utils and do some sanity checks
|
2016-10-30 07:20:13 +00:00
|
|
|
MY_DIR="${BASH_SOURCE%/*}"
|
|
|
|
if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
|
|
|
|
|
2018-05-12 14:48:16 +00:00
|
|
|
LINEAGE_ROOT="$MY_DIR"/../../..
|
2016-10-30 07:20:13 +00:00
|
|
|
|
2018-05-12 14:48:16 +00:00
|
|
|
HELPER="$LINEAGE_ROOT"/vendor/lineage/build/tools/extract_utils.sh
|
2016-10-30 07:20:13 +00:00
|
|
|
if [ ! -f "$HELPER" ]; then
|
|
|
|
echo "Unable to find helper script at $HELPER"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
. "$HELPER"
|
|
|
|
|
2018-03-19 13:33:18 +00:00
|
|
|
# Initialize the helper for common
|
2018-05-12 14:48:16 +00:00
|
|
|
setup_vendor "$DEVICE_COMMON" "$VENDOR" "$LINEAGE_ROOT" true
|
2016-10-30 07:20:13 +00:00
|
|
|
|
|
|
|
# Copyright headers and guards
|
2018-03-21 05:46:35 +00:00
|
|
|
write_headers "land santoni"
|
2016-10-30 07:20:13 +00:00
|
|
|
|
2018-03-19 13:33:18 +00:00
|
|
|
# The standard common blobs
|
2017-10-08 00:04:00 +00:00
|
|
|
write_makefiles "$MY_DIR"/proprietary-files-qc.txt true
|
2017-11-11 13:25:01 +00:00
|
|
|
|
2018-03-19 13:33:18 +00:00
|
|
|
# We are done!
|
2016-10-30 07:20:13 +00:00
|
|
|
write_footers
|
2018-03-19 13:33:18 +00:00
|
|
|
|
|
|
|
if [ -s "$MY_DIR"/../$DEVICE/proprietary-files.txt ]; then
|
|
|
|
# Reinitialize the helper for device
|
|
|
|
INITIAL_COPYRIGHT_YEAR="$DEVICE_BRINGUP_YEAR"
|
2018-05-12 14:48:16 +00:00
|
|
|
setup_vendor "$DEVICE" "$VENDOR" "$LINEAGE_ROOT" false
|
2018-03-19 13:33:18 +00:00
|
|
|
|
|
|
|
# Copyright headers and guards
|
|
|
|
write_headers
|
|
|
|
|
|
|
|
# The standard device blobs
|
2017-10-08 00:04:00 +00:00
|
|
|
write_makefiles "$MY_DIR"/../$DEVICE/proprietary-files.txt true
|
2018-03-19 13:33:18 +00:00
|
|
|
|
|
|
|
# We are done!
|
|
|
|
write_footers
|
|
|
|
fi
|