a5xelte: wpa_supplicant_overlay: Enable p2p
[GitHub/LineageOS/android_device_samsung_a5xelte.git] / extract-files.sh
CommitLineData
7c518c34
DW
1#!/bin/bash
2#
178a6416 3# Copyright (C) 2018-2019 The LineageOS Project
7c518c34
DW
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
178a6416 9# http://www.apache.org/licenses/LICENSE-2.0
7c518c34
DW
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
178a6416 16#
7c518c34
DW
17
18set -e
19
20VENDOR=samsung
178a6416 21DEVICE=a5xelte
7c518c34 22
178a6416 23# Load extract_utils and do some sanity checks
7c518c34 24MY_DIR="${BASH_SOURCE%/*}"
178a6416 25if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
7c518c34 26
178a6416 27LINEAGE_ROOT="${MY_DIR}"/../../..
7c518c34 28
178a6416
VO
29HELPER="${LINEAGE_ROOT}/vendor/lineage/build/tools/extract_utils.sh"
30if [ ! -f "${HELPER}" ]; then
31 echo "Unable to find helper script at ${HELPER}"
7c518c34
DW
32 exit 1
33fi
178a6416
VO
34source "${HELPER}"
35
36SECTION=
37KANG=
38
39while [ "${#}" -gt 0 ]; do
40 case "${1}" in
41 -n | --no-cleanup )
42 CLEAN_VENDOR=false
43 ;;
44 -k | --kang )
45 KANG="--kang"
46 ;;
47 -s | --section )
48 SECTION="${2}"; shift
49 CLEAN_VENDOR=false
50 ;;
51 * )
52 SRC="${1}"
53 ;;
54 esac
55 shift
56done
57
58if [ -z "${SRC}" ]; then
59 SRC="adb"
7c518c34
DW
60fi
61
62# Initialize the helper
178a6416 63setup_vendor "${DEVICE}" "${VENDOR}" "${LINEAGE_ROOT}" true "${CLEAN_VENDOR}"
7c518c34 64
178a6416
VO
65extract "${MY_DIR}/proprietary-files.txt" "${SRC}" \
66 "${KANG}" --section "${SECTION}"
7c518c34 67
b57baea5
DW
68# Fix proprietary blobs
69BLOB_ROOT="$LINEAGE_ROOT"/vendor/"$VENDOR"/"$DEVICE"/proprietary
70patchelf --replace-needed libprotobuf-cpp-full.so libprotobuf-cpp-fl26.so $BLOB_ROOT/lib/libsec-ril.so
71patchelf --replace-needed libprotobuf-cpp-full.so libprotobuf-cpp-fl26.so $BLOB_ROOT/lib/libsec-ril-dsds.so
0713f022
DW
72(perl -pi -e "s/\/system\/bin\/gpsd/\/vendor\/bin\/gpsd/g" $BLOB_ROOT/lib/libsec-ril.so)
73(perl -pi -e "s/\/system\/bin\/gpsd/\/vendor\/bin\/gpsd/g" $BLOB_ROOT/lib/libsec-ril-dsds.so)
b57baea5 74
178a6416 75"${MY_DIR}/setup-makefiles.sh"