Merge "Install init.qcom.sdio.sh to /vendor"
This commit is contained in:
commit
0f5f904393
|
@ -44,6 +44,7 @@ LOCAL_MODULE := init.qcom.sdio.sh
|
|||
LOCAL_MODULE_TAGS := optional eng
|
||||
LOCAL_MODULE_CLASS := ETC
|
||||
LOCAL_SRC_FILES := etc/init.qcom.sdio.sh
|
||||
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_EXECUTABLES)
|
||||
include $(BUILD_PREBUILT)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
@ -51,6 +52,7 @@ LOCAL_MODULE := init.qcom.wifi.sh
|
|||
LOCAL_MODULE_TAGS := optional eng
|
||||
LOCAL_MODULE_CLASS := ETC
|
||||
LOCAL_SRC_FILES := etc/init.qcom.wifi.sh
|
||||
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_EXECUTABLES)
|
||||
include $(BUILD_PREBUILT)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
@ -58,6 +60,7 @@ LOCAL_MODULE := init.crda.sh
|
|||
LOCAL_MODULE_TAGS := optional eng
|
||||
LOCAL_MODULE_CLASS := ETC
|
||||
LOCAL_SRC_FILES := etc/init.crda.sh
|
||||
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_EXECUTABLES)
|
||||
include $(BUILD_PREBUILT)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
@ -160,6 +163,7 @@ LOCAL_MODULE := qca6234-service.sh
|
|||
LOCAL_MODULE_TAGS := optional eng
|
||||
LOCAL_MODULE_CLASS := ETC
|
||||
LOCAL_SRC_FILES := etc/qca6234-service.sh
|
||||
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_EXECUTABLES)
|
||||
include $(BUILD_PREBUILT)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/system/bin/sh
|
||||
#! /vendor/bin/sh
|
||||
|
||||
# Copyright (c) 2012, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
|
|
@ -857,13 +857,13 @@ service qti-testscripts /system/bin/sh /system/etc/init.qcom.testscripts.sh
|
|||
oneshot
|
||||
seclabel u:r:qti-testscripts:s0
|
||||
|
||||
service wifi-sdio-on /system/bin/sh /system/etc/init.qcom.sdio.sh
|
||||
service wifi-sdio-on /vendor/bin/init.qcom.sdio.sh
|
||||
class late_start
|
||||
group wifi inet
|
||||
disabled
|
||||
oneshot
|
||||
|
||||
service wifi-crda /system/bin/sh /system/etc/init.crda.sh
|
||||
service wifi-crda /vendor/bin/init.crda.sh
|
||||
class late_start
|
||||
user root
|
||||
disabled
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/system/bin/sh
|
||||
#! /vendor/bin/sh
|
||||
|
||||
# Copyright (c) 2010, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
|
|
@ -61,8 +61,8 @@ if [ -f /system/etc/init.qcom.mdm_links.sh ]; then
|
|||
fi
|
||||
|
||||
# Run wifi script
|
||||
if [ -f /system/etc/init.qcom.wifi.sh ]; then
|
||||
/system/bin/sh /system/etc/init.qcom.wifi.sh "$target" "$serial"
|
||||
if [ -f /vendor/bin/init.qcom.wifi.sh ]; then
|
||||
/vendor/bin/init.qcom.wifi.sh "$target" "$serial"
|
||||
fi
|
||||
|
||||
# Run the sensor script
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/system/bin/sh
|
||||
#! /vendor/bin/sh
|
||||
|
||||
# Copyright (c) 2010-2013, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/system/bin/sh
|
||||
#! /vendor/bin/sh
|
||||
|
||||
# Copyright (c) 2010-2014, The Linux Foundation. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
|
Loading…
Reference in New Issue