diff options
Diffstat (limited to 'full_crespo.mk')
-rw-r--r-- | full_crespo.mk | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/full_crespo.mk b/full_crespo.mk index c6957e0..aa57db7 100644 --- a/full_crespo.mk +++ b/full_crespo.mk @@ -19,14 +19,31 @@ # product configuration (apps). # +# NFC is a product-level aspect that is too closely tied +# to this device to justify putting in a more generic config, +# but which is also not quite a low-level driver to put in +# device.mk +PRODUCT_PACKAGES := \ + libnfc \ + libnfc_jni \ + Nfc \ + Tag + +# Get the long list of APNs +PRODUCT_COPY_FILES := device/sample/etc/apns-full-conf.xml:system/etc/apns-conf.xml + +# Get the parts that are either non-open-source or depend +# on non-open-source drivers +$(call inherit-product-if-exists, vendor/samsung/crespo/full_crespo-trampoline.mk) + # Inherit from those products. Most specific first. -$(call inherit-product, $(SRC_TARGET_DIR)/product/languages_full.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base.mk) # This is where we'd set a backup provider if we had one #$(call inherit-product, device/sample/products/backup_overlay.mk) $(call inherit-product, device/samsung/crespo/device.mk) -$(call inherit-product, $(SRC_TARGET_DIR)/product/full.mk) # Discard inherited values and use our own instead. PRODUCT_NAME := full_crespo PRODUCT_DEVICE := crespo +PRODUCT_BRAND := Android PRODUCT_MODEL := Full Android on Crespo |