diff options
author | Anthony King <anthonydking@slimroms.net> | 2014-11-17 22:06:31 +0000 |
---|---|---|
committer | Adnan Begovic <adnan@cyngn.com> | 2015-10-06 16:59:08 -0700 |
commit | 904db9e2d7fce4cfc2a5f2f8d576c2d26c1b618f (patch) | |
tree | 0fdc58ca1bbcd870dd14a5d37bd3d6fe079baf18 /core | |
parent | 5b068fdf1e0b95708c5a3763c9319ec6d5136bf0 (diff) | |
download | build-904db9e2d7fce4cfc2a5f2f8d576c2d26c1b618f.zip build-904db9e2d7fce4cfc2a5f2f8d576c2d26c1b618f.tar.gz build-904db9e2d7fce4cfc2a5f2f8d576c2d26c1b618f.tar.bz2 |
pathmap: Point QC HAL pathmaps directly to the source
Directly map to the actual HAL directory, including the
board platform. This lets project-path-for point directly
to the respective HALs.
Change-Id: Ic4ed61bbdea9d0b5683502bf84a8410e76858527
Diffstat (limited to 'core')
-rw-r--r-- | core/qcom_target.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/qcom_target.mk b/core/qcom_target.mk index 476548f..ae94150 100644 --- a/core/qcom_target.mk +++ b/core/qcom_target.mk @@ -25,17 +25,17 @@ ifeq ($(BOARD_USES_QCOM_HARDWARE),true) endif endif -$(call project-set-path,qcom-audio,hardware/qcom/audio-caf) +$(call project-set-path,qcom-audio,hardware/qcom/audio-caf/$(TARGET_BOARD_PLATFORM)) $(call qcom-set-path-variant,CAMERA,camera) -$(call project-set-path,qcom-display,hardware/qcom/display-caf) +$(call project-set-path,qcom-display,hardware/qcom/display-caf/$(TARGET_BOARD_PLATFORM)) $(call qcom-set-path-variant,GPS,gps) -$(call project-set-path,qcom-media,hardware/qcom/media-caf) +$(call project-set-path,qcom-media,hardware/qcom/media-caf/$(TARGET_BOARD_PLATFORM)) $(call qcom-set-path-variant,SENSORS,sensors) else -$(call project-set-path,qcom-audio,hardware/qcom/audio) +$(call project-set-path,qcom-audio,hardware/qcom/audio/default) $(call qcom-set-path-variant,CAMERA,camera) -$(call project-set-path,qcom-display,hardware/qcom/display) +$(call project-set-path,qcom-display,hardware/qcom/display/$(TARGET_BOARD_PLATFORM)) $(call qcom-set-path-variant,GPS,gps) -$(call project-set-path,qcom-media,hardware/qcom/media) +$(call project-set-path,qcom-media,hardware/qcom/media/default) $(call qcom-set-path-variant,SENSORS,sensors) endif |