2009-03-04 11:32:55 +08:00
|
|
|
# Copyright 2005 The Android Open Source Project
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
2015-02-05 06:46:36 +08:00
|
|
|
# --
|
|
|
|
|
|
|
|
ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
|
2015-02-07 04:19:48 +08:00
|
|
|
init_options += -DALLOW_LOCAL_PROP_OVERRIDE=1 -DALLOW_DISABLE_SELINUX=1
|
2015-02-05 06:46:36 +08:00
|
|
|
else
|
2015-02-07 04:19:48 +08:00
|
|
|
init_options += -DALLOW_LOCAL_PROP_OVERRIDE=0 -DALLOW_DISABLE_SELINUX=0
|
2015-02-05 06:46:36 +08:00
|
|
|
endif
|
|
|
|
|
2015-02-07 04:19:48 +08:00
|
|
|
init_options += -DLOG_UEVENTS=0
|
|
|
|
|
|
|
|
init_cflags += \
|
|
|
|
$(init_options) \
|
|
|
|
-Wall -Wextra \
|
|
|
|
-Wno-unused-parameter \
|
|
|
|
-Werror \
|
2015-02-05 06:46:36 +08:00
|
|
|
|
|
|
|
# --
|
|
|
|
|
2015-02-07 04:19:48 +08:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CPPFLAGS := $(init_cflags)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
init_parser.cpp \
|
|
|
|
parser.cpp \
|
|
|
|
util.cpp \
|
|
|
|
|
2015-03-17 01:08:46 +08:00
|
|
|
LOCAL_STATIC_LIBRARIES := libbase
|
2015-02-07 04:19:48 +08:00
|
|
|
LOCAL_MODULE := libinit
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CPPFLAGS := $(init_cflags)
|
2009-03-04 11:32:55 +08:00
|
|
|
LOCAL_SRC_FILES:= \
|
2015-02-05 02:25:09 +08:00
|
|
|
bootchart.cpp \
|
2015-02-04 09:12:07 +08:00
|
|
|
builtins.cpp \
|
|
|
|
devices.cpp \
|
|
|
|
init.cpp \
|
|
|
|
keychords.cpp \
|
|
|
|
property_service.cpp \
|
|
|
|
signal_handler.cpp \
|
|
|
|
ueventd.cpp \
|
|
|
|
ueventd_parser.cpp \
|
|
|
|
watchdogd.cpp \
|
|
|
|
|
2009-03-04 11:32:55 +08:00
|
|
|
LOCAL_MODULE:= init
|
|
|
|
|
|
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
|
|
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
|
|
|
|
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED)
|
|
|
|
|
2012-10-17 14:07:05 +08:00
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
2015-02-07 04:19:48 +08:00
|
|
|
libinit \
|
|
|
|
libfs_mgr \
|
|
|
|
liblogwrap \
|
|
|
|
libcutils \
|
2015-03-17 01:08:46 +08:00
|
|
|
libbase \
|
2015-02-07 04:19:48 +08:00
|
|
|
liblog \
|
|
|
|
libc \
|
|
|
|
libselinux \
|
|
|
|
libmincrypt \
|
|
|
|
libext4_utils_static
|
2012-01-13 21:48:47 +08:00
|
|
|
|
2014-11-25 07:43:34 +08:00
|
|
|
# Create symlinks
|
|
|
|
LOCAL_POST_INSTALL_CMD := $(hide) mkdir -p $(TARGET_ROOT_OUT)/sbin; \
|
|
|
|
ln -sf ../init $(TARGET_ROOT_OUT)/sbin/ueventd; \
|
|
|
|
ln -sf ../init $(TARGET_ROOT_OUT)/sbin/watchdogd
|
2014-03-07 07:07:42 +08:00
|
|
|
|
2009-03-04 11:32:55 +08:00
|
|
|
include $(BUILD_EXECUTABLE)
|
2015-02-07 04:19:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := init_tests
|
|
|
|
LOCAL_SRC_FILES := \
|
2015-02-07 12:15:18 +08:00
|
|
|
init_parser_test.cpp \
|
2015-02-07 04:19:48 +08:00
|
|
|
util_test.cpp \
|
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
|
|
|
libcutils \
|
2015-03-17 01:08:46 +08:00
|
|
|
libbase \
|
2015-02-07 04:19:48 +08:00
|
|
|
|
|
|
|
LOCAL_STATIC_LIBRARIES := libinit
|
|
|
|
include $(BUILD_NATIVE_TEST)
|