diff options
| author | Rajiv Ranjan <rrajiv@codeaurora.org> | 2017-07-18 12:20:56 +0530 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-08-06 07:13:39 -0700 |
| commit | 9b73abc5b50fc26cdc4e02f5e880600a14fdbb28 (patch) | |
| tree | 3b0d20a2fdd2717381c6590a2e4eaebbf1008700 | |
| parent | ac4923231ec2f6c882e8e57f76b7798ba93edf50 (diff) | |
qcacld-3.0: Correct symbolic link for wlan.ko
In Treble based architecture, wlan driver generated
can be part of vendor image or system image. Symbolic
link is corrected so that wlan.ko points to correct path
irrespective of split/non-split image.
Change-Id: Ia3f237d2797e4526bfd6c089e54df1622886bf56
CRs-Fixed: 2078121
| -rw-r--r-- | Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk index cbdc313e900c..75b79bcb1668 100644 --- a/Android.mk +++ b/Android.mk @@ -69,7 +69,7 @@ ifneq ($(findstring $(WLAN_CHIPSET),$(WIFI_DRIVER_DEFAULT)),) ifeq ($(PRODUCT_VENDOR_MOVE_ENABLED),true) ifneq ($(WIFI_DRIVER_INSTALL_TO_KERNEL_OUT),) $(shell mkdir -p $(TARGET_OUT_VENDOR)/lib/modules; \ - ln -sf /system/lib/modules/$(WLAN_CHIPSET)/$(LOCAL_MODULE) $(TARGET_OUT_VENDOR)/lib/modules/wlan.ko) + ln -sf /$(TARGET_COPY_OUT_VENDOR)/lib/modules/$(WLAN_CHIPSET)/$(LOCAL_MODULE) $(TARGET_OUT_VENDOR)/lib/modules/wlan.ko) endif else $(shell mkdir -p $(TARGET_OUT)/lib/modules; \ |
