summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xAndroid.mk2
-rw-r--r--device.mk4
-rwxr-xr-xliblight/Android.mk2
3 files changed, 8 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index f2ce158..33b6a3b 100755
--- a/Android.mk
+++ b/Android.mk
@@ -18,10 +18,12 @@ ifeq ($(TARGET_DEVICE),crespo)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := s3c-keypad.kcm
+LOCAL_MODULE_TAGS := optional
include $(BUILD_KEY_CHAR_MAP)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := melfas-touchkey.kcm
+LOCAL_MODULE_TAGS := optional
include $(BUILD_KEY_CHAR_MAP)
endif
diff --git a/device.mk b/device.mk
index e83cf9c..4591c19 100644
--- a/device.mk
+++ b/device.mk
@@ -63,6 +63,10 @@ PRODUCT_PACKAGES := \
s3c-keypad.kcm \
melfas-touchkey.kcm
+# Misc other modules
+PRODUCT_PACKAGES += \
+ lights.s5pc110
+
# These are the hardware-specific features
PRODUCT_COPY_FILES += \
frameworks/base/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \
diff --git a/liblight/Android.mk b/liblight/Android.mk
index c11e827..b594be3 100755
--- a/liblight/Android.mk
+++ b/liblight/Android.mk
@@ -28,6 +28,8 @@ LOCAL_SHARED_LIBRARIES := liblog
LOCAL_MODULE := lights.$(TARGET_BOARD_PLATFORM)
+LOCAL_MODULE_TAGS := optional
+
include $(BUILD_SHARED_LIBRARY)
endif