Advertisement
giveen

device.mk

Feb 28th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 KB | None | 0 0
  1. # Dell Streak 7 Make File
  2.  
  3. # Boot animation
  4. TARGET_SCREEN_HEIGHT := 480
  5. TARGET_SCREEN_WIDTH := 800
  6.  
  7. PRODUCT_COPY_FILES += \
  8. $(LOCAL_PATH)/prebuilts/etc/media_codecs.xml:system/etc/media_codecs.xml \
  9. $(LOCAL_PATH)/prebuilts/etc/nvram.txt:system/etc/wifi/nvram.txt \
  10. $(LOCAL_PATH)/prebuilts/etc/nvcamera.conf:system/etc/nvcamera.conf \
  11. $(LOCAL_PATH)/prebuilts/root/init.streak7.rc:root/init.streak7.rc \
  12. $(LOCAL_PATH)/prebuilts/root/fstab.streak7:root/fstab.streak7 \
  13. $(LOCAL_PATH)/prebuilts/root/init.streak7.usb.rc:root/init.streak7.usb.rc \
  14. $(LOCAL_PATH)/prebuilts/root/ueventd.streak7.rc:root/ueventd.streak7.rc \
  15. $(LOCAL_PATH)/prebuilts/root/sbin/ln_named_part:root/sbin/ln_named_part \
  16. $(LOCAL_PATH)/prebuilts/bin/checkifmodemexists.sh:system/bin/checkifmodemexists.sh \
  17. frameworks/native/data/etc/tablet_core_hardware.xml:system/etc/permissions/tablet_core_hardware.xml \
  18. frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml \
  19. frameworks/native/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
  20. frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:system/etc/permissions/android.hardware.sensor.accelerometer.xml \
  21. frameworks/native/data/etc/android.hardware.sensor.compass.xml:system/etc/permissions/android.hardware.sensor.compass.xml \
  22. frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:system/etc/permissions/android.hardware.sensor.gyroscope.xml \
  23. frameworks/native/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
  24. frameworks/native/data/etc/android.hardware.sensor.proximity.xml:system/etc/permissions/android.hardware.sensor.proximity.xml \
  25. frameworks/native/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \
  26. frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml \
  27. frameworks/native/data/etc/android.hardware.usb.accessory.xml:system/etc/permissions/android.hardware.usb.accessory.xml \
  28. frameworks/native/data/etc/android.hardware.camera.flash-autofocus.xml:system/etc/permissions/android.hardware.camera.flash-autofocus.xml \
  29. frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \
  30. frameworks/native/data/etc/android.hardware.camera.xml:system/etc/permissions/android.hardware.camera.xml \
  31.  
  32. PRODUCT_COPY_FILES += \
  33. $(LOCAL_PATH)/prebuilts/etc/vold.fstab:system/etc/vold.fstab \
  34. $(LOCAL_PATH)/prebuilts/usr/gpio-keys.kl:system/usr/keylayout/gpio-keys.kl \
  35. $(LOCAL_PATH)/prebuilts/etc/media_profiles.xml:system/etc/media_profiles.xml \
  36. $(LOCAL_PATH)/prebuilts/usr/atmel-maxtouch.idc:system/usr/idc/mXT224_touchscreen.idc \
  37. $(LOCAL_PATH)/prebuilts/etc/audio_policy.conf:system/etc/audio_policy.conf \
  38. $(LOCAL_PATH)/prebuilts/etc/gps.conf:system/etc/gps.conf \
  39. $(LOCAL_PATH)/prebuilts/etc/gpsconfig.xml:system/etc/gpsconfig.xml \
  40. $(LOCAL_PATH)/prebuilts/etc/mixer_paths.xml:system/etc/mixer_paths.xml \
  41. $(LOCAL_PATH)/prebuilts/usr/panjit_touch.idc:system/usr/idc/panjit_touch.idc
  42.  
  43. PRODUCT_COPY_FILES += \
  44. $(LOCAL_PATH)/bluetooth/bt_vendor.conf:system/etc/bluetooth/bt_vendor.conf
  45.  
  46.  
  47. PRODUCT_PACKAGES += \
  48. lights.streak7 \
  49. sensors.streak7 \
  50. libinvensense_mpl \
  51. librs_jni
  52.  
  53. #File System
  54. PRODUCT_PACKAGES += \
  55. setup_fs \
  56. make_ext4fs \
  57.  
  58. PRODUCT_PACKAGES += \
  59. libpkip \
  60. wmiconfig
  61.  
  62. #Audio
  63. PRODUCT_PACKAGES += \
  64. audio.primary.streak7 \
  65. libaudioutils \
  66. libasound \
  67. libtinyalsa \
  68. tinyplay \
  69. tinycap \
  70. tinymix \
  71. rild \
  72. libhuaweigeneric-ril
  73.  
  74. #Wifi
  75. PRODUCT_PACKAGES += \
  76. fw_bcm4329.bin \
  77. fw_bcm4329_apsta.bin
  78.  
  79. # we have enough storage space to hold precise GC data
  80. PRODUCT_TAGS += dalvik.gc.type-precise
  81.  
  82. PRODUCT_CHARACTERISTICS := tablet
  83.  
  84. PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
  85. ro.secure=0 \
  86. persist.sys.strictmode.visual=0
  87.  
  88. ADDITIONAL_DEFAULT_PROPERTIES += ro.secure=0
  89. ADDITIONAL_DEFAULT_PROPERTIES += persist.sys.strictmode.visual=0
  90.  
  91. DEVICE_PACKAGE_OVERLAYS := device/dell/streak7/overlay
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement