diff options
-rwxr-xr-x | extract-files.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/extract-files.sh b/extract-files.sh index 8b07937..3b76c64 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -31,8 +31,6 @@ for FILE in `cat proprietary-files.txt | grep -v ^# | grep -v ^$`; do fi adb pull /$FILE $DEVICEBASE/$FILE done -adb pull /system/lib/hw/vendor-camera.exynos4.so $DEVICEBASE/system/lib/hw/camera.exynos4.so - (cat << EOF) | sed s/__DEVICE__/$DEVICE/g | sed s/__VENDOR__/$VENDOR/g > $DEVICEMAKEFILE # Copyright (C) 2012 The CyanogenMod Project @@ -49,15 +47,7 @@ adb pull /system/lib/hw/vendor-camera.exynos4.so $DEVICEBASE/system/lib/hw/camer # See the License for the specific language governing permissions and # limitations under the License. -# Prebuilt libraries that are needed to build open-source libraries PRODUCT_COPY_FILES := \\ - vendor/__VENDOR__/__DEVICE__/proprietary/system/lib/libril.so:obj/lib/libril.so \\ - vendor/__VENDOR__/__DEVICE__/proprietary/system/lib/libsecril-client.so:obj/lib/libsecril-client.so - -PRODUCT_COPY_FILES += \\ - vendor/__VENDOR__/__DEVICE__/proprietary/system/lib/hw/camera.exynos4.so:system/lib/hw/vendor-camera.exynos4.so - -PRODUCT_COPY_FILES += \\ EOF LINEEND=" \\" |