-
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.
X00TD: Create initial proprietary-files.txt
Change-Id: I7077963beae26add6a70332a38436ed06094b5ff
- Loading branch information
1 parent
59a59e2
commit 0cb6967
Showing
3 changed files
with
710 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -7,6 +7,28 @@ | |
|
||
# If we're being sourced by the common script that we called, | ||
# stop right here. No need to go down the rabbit hole. | ||
|
||
function blob_fixup() { | ||
case "${1}" in | ||
|
||
# Fix jar path | ||
product/etc/permissions/qti_fingerprint_interface.xml) | ||
sed -i 's|/system/framework/|/system/product/framework/|g' "${2}" | ||
;; | ||
|
||
# Rename to fp service avoid conflicts | ||
vendor/etc/init/[email protected]_asus.rc) | ||
sed -i 's|[email protected]|[email protected]_asus|g' "${2}" | ||
;; | ||
|
||
# remove android.hidl.base dependency | ||
vendor/lib/hw/camera.sdm660.so) | ||
patchelf --remove-needed "[email protected]" "${2}" | ||
;; | ||
|
||
esac | ||
} | ||
|
||
if [ "${BASH_SOURCE[0]}" != "${0}" ]; then | ||
return | ||
fi | ||
|
Oops, something went wrong.