forked from LineageOS/android_device_samsung_klte-common
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
klte-common: Use generic extract scripts
Change-Id: Ibd39d3f282aef82a8c33420c4dc34784374405e9
- Loading branch information
1 parent
1300472
commit 5d67564
Showing
3 changed files
with
73 additions
and
270 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,59 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (C) 2016 The CyanogenMod Project | ||
# | ||
# 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 | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# 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. | ||
# | ||
|
||
function extract() { | ||
for FILE in `egrep -v '(^#|^$)' $1`; do | ||
OLDIFS=$IFS IFS=":" PARSING_ARRAY=($FILE) IFS=$OLDIFS | ||
FILE=`echo ${PARSING_ARRAY[0]} | sed -e "s/^-//g"` | ||
DEST=${PARSING_ARRAY[1]} | ||
if [ -z $DEST ]; then | ||
DEST=$FILE | ||
fi | ||
DIR=`dirname $FILE` | ||
if [ ! -d $2/$DIR ]; then | ||
mkdir -p $2/$DIR | ||
fi | ||
if [ "$SRC" = "adb" ]; then | ||
# Try CM target first | ||
adb pull /system/$DEST $2/$DEST | ||
# if file does not exist try OEM target | ||
if [ "$?" != "0" ]; then | ||
adb pull /system/$FILE $2/$DEST | ||
fi | ||
else | ||
cp $SRC/system/$FILE $2/$DEST | ||
# if file dot not exist try destination | ||
if [ "$?" != "0" ] | ||
then | ||
cp $SRC/system/$DEST $2/$DEST | ||
fi | ||
fi | ||
done | ||
} | ||
set -e | ||
|
||
# Load extract_utils and do some sanity checks | ||
MY_DIR="${BASH_SOURCE%/*}" | ||
if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi | ||
|
||
CM_ROOT="$MY_DIR"/../../.. | ||
|
||
HELPER="$CM_ROOT"/vendor/cm/build/tools/extract_utils.sh | ||
if [ ! -f "$HELPER" ]; then | ||
echo "Unable to find helper script at $HELPER" | ||
exit 1 | ||
fi | ||
. "$HELPER" | ||
|
||
if [ $# -eq 0 ]; then | ||
SRC=adb | ||
SRC=adb | ||
else | ||
if [ $# -eq 1 ]; then | ||
SRC=$1 | ||
else | ||
echo "$0: bad number of arguments" | ||
echo "" | ||
echo "usage: $0 [PATH_TO_EXPANDED_ROM]" | ||
echo "" | ||
echo "If PATH_TO_EXPANDED_ROM is not specified, blobs will be extracted from" | ||
echo "the device using adb pull." | ||
exit 1 | ||
fi | ||
if [ $# -eq 1 ]; then | ||
SRC=$1 | ||
else | ||
echo "$0: bad number of arguments" | ||
echo "" | ||
echo "usage: $0 [PATH_TO_EXPANDED_ROM]" | ||
echo "" | ||
echo "If PATH_TO_EXPANDED_ROM is not specified, blobs will be extracted from" | ||
echo "the device using adb pull." | ||
exit 1 | ||
fi | ||
fi | ||
|
||
BASE=../../../vendor/$VENDOR/klte-common/proprietary | ||
rm -rf $BASE/* | ||
# Initialize the helper for common device | ||
setup_vendor "$DEVICE_COMMON" "$VENDOR" "$CM_ROOT" true | ||
|
||
extract "$MY_DIR"/common-proprietary-files.txt "$SRC" | ||
|
||
DEVBASE=../../../vendor/$VENDOR/$DEVICE/proprietary | ||
rm -rf $DEVBASE/* | ||
# Reinitialize the helper for device | ||
setup_vendor "$DEVICE" "$VENDOR" "$CM_ROOT" | ||
|
||
extract ../../$VENDOR/klte-common/proprietary-files.txt $BASE | ||
extract ../../$VENDOR/$DEVICE/proprietary-files.txt $DEVBASE | ||
extract "$MY_DIR"/../$DEVICE/device-proprietary-files.txt "$SRC" | ||
|
||
./setup-makefiles.sh | ||
"$MY_DIR"/setup-makefiles.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters