blob: 8e7671f72ad6423c0bafb0eac059e0bcb1ff1671 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Ship the scripts on the device
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := reboot.sh
LOCAL_SRC_FILES := device-files/reboot.sh
LOCAL_MODULE_CLASS := EXECUTABLES
include $(BUILD_PREBUILT)
include $(CLEAR_VARS)
LOCAL_MODULE := shutdown.sh
LOCAL_SRC_FILES := device-files/shutdown.sh
LOCAL_MODULE_CLASS := EXECUTABLES
include $(BUILD_PREBUILT)
|