mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_sm6250-common.git
synced 2025-05-08 06:47:17 +09:00
On builds where A/B support is enabled the system image acts as the rootfs. In this case we can no longer create the non-hlos image mount points at run time as we used to. We now create them as part of the build itself. Change-Id: I30d98f7c50fca3ce7117b9b8d87150655bb5b440
32 lines
915 B
Makefile
32 lines
915 B
Makefile
#
|
|
# Copyright (C) 2020 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
ifneq ($(filter placeholder,$(TARGET_DEVICE)),)
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
FIRMWARE_MOUNT_POINT := $(TARGET_OUT_VENDOR)/firmware_mnt
|
|
$(FIRMWARE_MOUNT_POINT): $(LOCAL_INSTALLED_MODULE)
|
|
@echo "Creating $(FIRMWARE_MOUNT_POINT)"
|
|
@mkdir -p $(TARGET_OUT_VENDOR)/firmware_mnt
|
|
|
|
BT_FIRMWARE_MOUNT_POINT := $(TARGET_OUT_VENDOR)/bt_firmware
|
|
$(BT_FIRMWARE_MOUNT_POINT): $(LOCAL_INSTALLED_MODULE)
|
|
@echo "Creating $(BT_FIRMWARE_MOUNT_POINT)"
|
|
@mkdir -p $(TARGET_OUT_VENDOR)/bt_firmware
|
|
|
|
DSP_MOUNT_POINT := $(TARGET_OUT_VENDOR)/dsp
|
|
$(DSP_MOUNT_POINT): $(LOCAL_INSTALLED_MODULE)
|
|
@echo "Creating $(DSP_MOUNT_POINT)"
|
|
@mkdir -p $(TARGET_OUT_VENDOR)/dsp
|
|
|
|
ALL_DEFAULT_INSTALLED_MODULES += $(FIRMWARE_MOUNT_POINT) $(BT_FIRMWARE_MOUNT_POINT) $(DSP_MOUNT_POINT)
|
|
|
|
endif
|