Message ID | 20170922224226.563-1-robh@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/Android.mk b/Android.mk index 2c4f7e3ee930..aa95b44c6075 100644 --- a/Android.mk +++ b/Android.mk @@ -94,6 +94,8 @@ LOCAL_MODULE_TAGS := optional LOCAL_MODULE_RELATIVE_PATH := hw LOCAL_MODULE_CLASS := SHARED_LIBRARIES LOCAL_MODULE_SUFFIX := $(TARGET_SHLIB_SUFFIX) +LOCAL_VENDOR_MODULE := true + include $(BUILD_SHARED_LIBRARY) include $(call all-makefiles-under,$(LOCAL_PATH))
As part of Treble project in Android O, all the device specific files have to be located in a separate vendor partition. This is done by setting LOCAL_PROPRIETARY_MODULE (the name is misleading). This change will not break existing platforms without a vendor partition as it will just move files to /system/vendor. Signed-off-by: Rob Herring <robh@kernel.org> --- Android.mk | 2 ++ 1 file changed, 2 insertions(+)