98 lines
3 KiB
Bash
Executable file
98 lines
3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright 2015 The Android Open Source 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.
|
|
|
|
rm -f extract-lists.txt
|
|
cat ../vendor_owner_info.txt |
|
|
cut -d : -f 2 |
|
|
sort -u |
|
|
grep -v google |
|
|
while read target_owner
|
|
do
|
|
mkdir -p $target_owner/staging
|
|
cat > $target_owner/staging/device-partial.mk << EOF
|
|
# Copyright 2015 The Android Open Source 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.
|
|
|
|
EOF
|
|
echo -n "# " >> $target_owner/staging/device-partial.mk
|
|
case $target_owner in
|
|
nvidia)
|
|
echo -n Nvidia >> $target_owner/staging/device-partial.mk
|
|
;;
|
|
google)
|
|
echo -n Google >> $target_owner/staging/device-partial.mk
|
|
;;
|
|
esac
|
|
echo " blob(s) necessary for Dragon hardware" >> $target_owner/staging/device-partial.mk
|
|
echo "PRODUCT_COPY_FILES := \\" >> $target_owner/staging/device-partial.mk
|
|
|
|
echo " $target_owner)" >> extract-lists.txt
|
|
echo " TO_EXTRACT=\"\\" >> extract-lists.txt
|
|
|
|
|
|
cat ../proprietary-blobs.txt |
|
|
grep ^/ |
|
|
cut -b 2- |
|
|
sort |
|
|
while read file
|
|
do
|
|
|
|
auto_owner=$(grep ^$file: ../vendor_owner_info.txt | cut -d : -f 2)
|
|
if test $file = system/lib/hw/gps.msm8974.so -o $file = system/lib/libgps.utils.so -o $file = system/lib/libloc_adapter.so -o $file = system/lib/libloc_eng.so
|
|
then
|
|
auto_owner=qcom
|
|
fi
|
|
|
|
if test "$auto_owner" = ""
|
|
then
|
|
echo $file has no known owner
|
|
fi
|
|
|
|
if test "$auto_owner" = "$target_owner" -a $file != system/app/shutdownlistener.apk -a $file != system/app/TimeService.apk
|
|
then
|
|
if test $file != ZZZ
|
|
then
|
|
if [[ $file == */lib64/* ]]
|
|
then
|
|
echo " vendor/$target_owner/dragon/proprietary/lib64/$(basename $file):$file:$target_owner \\" >> $target_owner/staging/device-partial.mk
|
|
else
|
|
echo " vendor/$target_owner/dragon/proprietary/$(basename $file):$file:$target_owner \\" >> $target_owner/staging/device-partial.mk
|
|
fi
|
|
fi
|
|
echo " $file \\" >> extract-lists.txt
|
|
fi
|
|
done
|
|
|
|
echo >> $target_owner/staging/device-partial.mk
|
|
if test $target_owner = qcom
|
|
then
|
|
true ; #echo PRODUCT_PACKAGES := libacdbloader >> $target_owner/staging/device-partial.mk
|
|
fi
|
|
|
|
echo " \"" >> extract-lists.txt
|
|
echo " ;;" >> extract-lists.txt
|
|
done
|