diff options
author | Daniel Hillenbrand <daniel.hillenbrand@codeworkx.de> | 2012-08-14 15:57:50 +0200 |
---|---|---|
committer | Daniel Hillenbrand <daniel.hillenbrand@codeworkx.de> | 2012-08-14 16:07:30 +0200 |
commit | 86c69194a0e10baae13f48d70bb5cb321b5c31cc (patch) | |
tree | 0a6b626bc136f8ea8ce4f2e79ac4565a4367a95a | |
parent | 5271d35192bbafda607cdde0a1f51320b8301cdc (diff) | |
download | device_samsung_p3110-86c69194a0e10baae13f48d70bb5cb321b5c31cc.zip device_samsung_p3110-86c69194a0e10baae13f48d70bb5cb321b5c31cc.tar.gz device_samsung_p3110-86c69194a0e10baae13f48d70bb5cb321b5c31cc.tar.bz2 |
common blob script cleanup
Change-Id: If3cde312577c51f1f26722c0da566e859b23283d
-rwxr-xr-x | extract-files.sh | 2 | ||||
-rw-r--r-- | proprietary-common-files.txt | 46 | ||||
-rwxr-xr-x | setup-makefiles.sh | 4 |
3 files changed, 3 insertions, 49 deletions
diff --git a/extract-files.sh b/extract-files.sh index 562c507..a0206de 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 ../p3100/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 5dc628c..11debcb 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 ../p3100/proprietary-common-files.txt | grep -v ^# | grep -v ^$ | wc -l | awk {'print $1'}` +for FILE in `cat ../p3100/proprietary-common-files.txt | grep -v ^# | grep -v ^$`; do COUNT=`expr $COUNT - 1` if [ $COUNT = "0" ]; then LINEEND="" |