diff options
author | Hashcode <hashcode0f@gmail.com> | 2012-12-14 23:48:47 -0800 |
---|---|---|
committer | Gerrit Code Review <gerrit@review.cyanogenmod.com> | 2013-01-26 22:10:35 -0800 |
commit | de825f2f08fad153116807ea18002e4590bd71bb (patch) | |
tree | 100e1a28e138299744267aef6d1cb5ffb225e0be | |
parent | a1c078bd69103c62754f6ead655f1afec4b72179 (diff) | |
download | hardware_ti_omap4xxx-de825f2f08fad153116807ea18002e4590bd71bb.zip hardware_ti_omap4xxx-de825f2f08fad153116807ea18002e4590bd71bb.tar.gz hardware_ti_omap4xxx-de825f2f08fad153116807ea18002e4590bd71bb.tar.bz2 |
omap4xxx: add flag to allow custom libion
Due to kernel changes I need to stop the omap4xxx/libion via
BOARD_USES_CUSTOM_LIBION flag and instead use a custom libion
in my device trees.
Change-Id: Ic48e8c51456c76dfd9bca00cb59581deb2cfc510
Signed-off-by: Hashcode <hashcode0f@gmail.com>
-rw-r--r-- | ion/Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ion/Android.mk b/ion/Android.mk index 58fc9f9..f8a85d4 100644 --- a/ion/Android.mk +++ b/ion/Android.mk @@ -1,3 +1,4 @@ +ifndef BOARD_USE_CUSTOM_LIBION # only include if running on an omap4 platform ifeq ($(TARGET_BOARD_PLATFORM),omap4) @@ -11,3 +12,4 @@ LOCAL_SHARED_LIBRARIES := liblog include $(BUILD_HEAPTRACKED_SHARED_LIBRARY) endif +endif |