Home | History | Annotate | Download | only in recovery
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 ifneq (,$(findstring $(TARGET_DEVICE),toroplus))
      4 
      5 # Edify extension functions for doing modem (radio) updates on toroplus devices.
      6 
      7 include $(CLEAR_VARS)
      8 
      9 LOCAL_MODULE_TAGS := optional
     10 LOCAL_C_INCLUDES += bootable/recovery
     11 LOCAL_SRC_FILES := recovery_updater.c update_cdma_modem.c
     12 
     13 # should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk
     14 LOCAL_MODULE := librecovery_updater_toroplus
     15 
     16 include $(BUILD_STATIC_LIBRARY)
     17 
     18 endif
     19