From 245c2f29f2498c9d8df16324a81958f047aef0bb Mon Sep 17 00:00:00 2001 From: Daniel Hillenbrand Date: Tue, 14 Aug 2012 15:58:20 +0200 Subject: common blob script cleanup Change-Id: Ie03c5ac51f9f7728501f2999eb05e416f921b2fa --- extract-files.sh | 2 +- proprietary-common-files.txt | 46 -------------------------------------------- setup-makefiles.sh | 4 ++-- 3 files changed, 3 insertions(+), 49 deletions(-) delete mode 100644 proprietary-common-files.txt diff --git a/extract-files.sh b/extract-files.sh index 943c374..6e59852 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -23,7 +23,7 @@ COMMONBASE=../../../vendor/$VENDOR/$COMMON/common DEVICEBASE=../../../vendor/$VENDOR/$COMMON/$DEVICE echo "Pulling common files..." -for FILE in `cat proprietary-common-files.txt | grep -v ^# | grep -v ^$`; do +for FILE in `cat ../p5100/proprietary-common-files.txt | grep -v ^# | grep -v ^$`; do DIR=`dirname $FILE` if [ ! -d $COMMONBASE/$DIR ]; then mkdir -p $COMMONBASE/$DIR diff --git a/proprietary-common-files.txt b/proprietary-common-files.txt deleted file mode 100644 index 1a0cd89..0000000 --- a/proprietary-common-files.txt +++ /dev/null @@ -1,46 +0,0 @@ -system/bin/geomagneticd -system/bin/gpsd -system/bin/hostapd -system/bin/orientationd -system/etc/wifi/bcmdhd_apsta.bin -system/etc/wifi/bcmdhd_mfg.bin -system/etc/wifi/bcmdhd_p2p.bin -system/etc/wifi/bcmdhd_sta.bin -system/etc/wifi/nvram_mfg.txt -system/etc/wifi/nvram_net.txt -system/lib/hw/camera.omap4.so -system/lib/hw/gps.omap4.so -system/lib/hw/sensors.omap4.so -system/lib/libI420colorconvert.so -system/lib/libOMX.TI.DUCATI1.MISC.SAMPLE.so -system/lib/libOMX.TI.DUCATI1.VIDEO.CAMERA.so -system/lib/libOMX.TI.DUCATI1.VIDEO.DECODER.secure.so -system/lib/libOMX.TI.DUCATI1.VIDEO.DECODER.so -system/lib/libOMX.TI.DUCATI1.VIDEO.H264E.so -system/lib/libOMX.TI.DUCATI1.VIDEO.MPEG4E.so -system/lib/libOMX_Core.so -system/lib/libQmageDecoder.so -system/lib/libdomx.so -system/lib/libion.so -system/lib/libmm_osal.so -system/lib/libril.so -system/lib/libsec-ril.so -system/lib/libsecnativefeature.so -system/lib/libsecril-client.so -system/lib/libtiutils.so -system/vendor/bin/pvrsrvctl -system/vendor/firmware/BCM4330.hcd -system/vendor/firmware/ducati-m3.bin -system/vendor/lib/egl/libEGL_POWERVR_SGX540_120.so -system/vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so -system/vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so -system/vendor/lib/hw/gralloc.omap4.so -system/vendor/lib/libIMGegl.so -system/vendor/lib/libPVRScopeServices.so -system/vendor/lib/libglslcompiler.so -system/vendor/lib/libpvr2d.so -system/vendor/lib/libpvrANDROID_WSEGL.so -system/vendor/lib/libsrv_init.so -system/vendor/lib/libsrv_um.so -system/vendor/lib/libusc.so - diff --git a/setup-makefiles.sh b/setup-makefiles.sh index 179e990..8b75338 100755 --- a/setup-makefiles.sh +++ b/setup-makefiles.sh @@ -44,8 +44,8 @@ PRODUCT_COPY_FILES += \\ EOF LINEEND=" \\" -COUNT=`cat proprietary-common-files.txt | grep -v ^# | grep -v ^$ | wc -l | awk {'print $1'}` -for FILE in `cat proprietary-common-files.txt | grep -v ^# | grep -v ^$`; do +COUNT=`cat ../p5100/proprietary-common-files.txt | grep -v ^# | grep -v ^$ | wc -l | awk {'print $1'}` +for FILE in `cat ../p5100/proprietary-common-files.txt | grep -v ^# | grep -v ^$`; do COUNT=`expr $COUNT - 1` if [ $COUNT = "0" ]; then LINEEND="" -- cgit v1.1