cf10d879d0
* Yes, I could do the sepolicy that lets this run correctly, but why? Even if the phone takes 0.5s longer to boot, will you really even notice? We are going to disable the deferred initcalls in the kernel and let it do its thing the more "normal" way. Change-Id: I2a9c50f12f4309923f3cdf6e646cad8edf717560
34 lines
960 B
Makefile
34 lines
960 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := fstab.qcom
|
|
LOCAL_MODULE_TAGS := optional eng
|
|
LOCAL_MODULE_CLASS := ETC
|
|
LOCAL_SRC_FILES := etc/fstab.qcom
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
|
include $(BUILD_PREBUILT)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := init.qcom.rc
|
|
LOCAL_MODULE_TAGS := optional eng
|
|
LOCAL_MODULE_CLASS := ETC
|
|
LOCAL_SRC_FILES := etc/init.qcom.rc
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
|
include $(BUILD_PREBUILT)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := init.qcom.usb.rc
|
|
LOCAL_MODULE_TAGS := optional eng
|
|
LOCAL_MODULE_CLASS := ETC
|
|
LOCAL_SRC_FILES := etc/init.qcom.usb.rc
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
|
include $(BUILD_PREBUILT)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := ueventd.qcom.rc
|
|
LOCAL_MODULE_TAGS := optional eng
|
|
LOCAL_MODULE_CLASS := ETC
|
|
LOCAL_SRC_FILES := etc/ueventd.qcom.rc
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
|
include $(BUILD_PREBUILT)
|