From 06748cb7753b9b347523d72789e5eed308bdb096 Mon Sep 17 00:00:00 2001 From: Bruno Martins Date: Thu, 9 Jun 2022 15:08:33 +0100 Subject: [PATCH] beast: Unset DEVICE_PATH in the product makefile There's no need for this, make use of LOCAL_PATH instead. Change-Id: I94642c86049d85d1b4f372309bc5899f9876ffe3 --- device.mk | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/device.mk b/device.mk index 2e30c5b..de96558 100644 --- a/device.mk +++ b/device.mk @@ -4,8 +4,6 @@ # SPDX-License-Identifier: Apache-2.0 # -DEVICE_PATH := device/google/beast - $(call inherit-product, vendor/google/beast/beast-vendor.mk) $(call inherit-product, device/amlogic/gx-common/gx.mk) @@ -16,7 +14,7 @@ include hardware/realtek/rtkbt/rtkbt.mk ## Init-Files PRODUCT_COPY_FILES += \ - $(DEVICE_PATH)/init-files/init.amlogic.wifi_buildin.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.amlogic.wifi_buildin.rc + $(LOCAL_PATH)/init-files/init.amlogic.wifi_buildin.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.amlogic.wifi_buildin.rc ## Kernel Modules PRODUCT_PACKAGES += \ @@ -24,7 +22,7 @@ PRODUCT_PACKAGES += \ ## Overlays DEVICE_PACKAGE_OVERLAYS += \ - $(DEVICE_PATH)/overlay + $(LOCAL_PATH)/overlay ## Platform TARGET_AMLOGIC_SOC := gxl -- 2.20.1