2009-03-04 04:32:55 +01:00
|
|
|
# Copyright 2005 The Android Open Source Project
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
builtins.c \
|
|
|
|
init.c \
|
|
|
|
devices.c \
|
|
|
|
property_service.c \
|
|
|
|
util.c \
|
|
|
|
parser.c \
|
2010-04-14 04:48:59 +02:00
|
|
|
keychords.c \
|
2010-04-20 23:29:05 +02:00
|
|
|
signal_handler.c \
|
2010-04-21 21:04:20 +02:00
|
|
|
init_parser.c \
|
2010-04-20 23:32:50 +02:00
|
|
|
ueventd.c \
|
2012-06-14 06:51:56 +02:00
|
|
|
ueventd_parser.c \
|
|
|
|
watchdogd.c
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-04-02 00:15:38 +02:00
|
|
|
LOCAL_CFLAGS += -Wno-unused-parameter
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
ifeq ($(strip $(INIT_BOOTCHART)),true)
|
|
|
|
LOCAL_SRC_FILES += bootchart.c
|
|
|
|
LOCAL_CFLAGS += -DBOOTCHART=1
|
|
|
|
endif
|
|
|
|
|
2012-01-18 22:38:34 +01:00
|
|
|
ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
|
|
|
|
LOCAL_CFLAGS += -DALLOW_LOCAL_PROP_OVERRIDE=1
|
|
|
|
endif
|
|
|
|
|
2014-03-07 00:07:42 +01:00
|
|
|
# Enable ueventd logging
|
|
|
|
#LOCAL_CFLAGS += -DLOG_UEVENTS=1
|
|
|
|
|
2009-03-04 04:32:55 +01: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 08:07:05 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
|
|
libfs_mgr \
|
fs_mgr: Capture the output of e2fsck and add to the kernel log
Currently, the output of e2fsck is not saved, and we have no insight
into how many errors e2fsck is finding and fixing. Using the new
abbreviated logging feature in liblogwrap, up to the first 100 lines,
and last 4K bytes of the output of e2fsck is captured by fs_mgr, and
added to the kernel log.
Usually, the filesystem will be clean, and this will only add a few
lines to the kernel log on boot, but when things go wrong, it should
save enough to indicate what the problem is, without potentially
filling the kernel log with only e2fsck output if the filesystem is
really corrupted.
Change-Id: I9c264798e6fe721c8f818b5ce15d0975027ddbdd
2013-03-20 03:38:44 +01:00
|
|
|
liblogwrap \
|
2012-10-17 08:07:05 +02:00
|
|
|
libcutils \
|
fs_mgr: Capture the output of e2fsck and add to the kernel log
Currently, the output of e2fsck is not saved, and we have no insight
into how many errors e2fsck is finding and fixing. Using the new
abbreviated logging feature in liblogwrap, up to the first 100 lines,
and last 4K bytes of the output of e2fsck is captured by fs_mgr, and
added to the kernel log.
Usually, the filesystem will be clean, and this will only add a few
lines to the kernel log on boot, but when things go wrong, it should
save enough to indicate what the problem is, without potentially
filling the kernel log with only e2fsck output if the filesystem is
really corrupted.
Change-Id: I9c264798e6fe721c8f818b5ce15d0975027ddbdd
2013-03-20 03:38:44 +01:00
|
|
|
liblog \
|
2012-10-17 08:07:05 +02:00
|
|
|
libc \
|
2013-02-23 03:11:41 +01:00
|
|
|
libselinux \
|
|
|
|
libmincrypt \
|
|
|
|
libext4_utils_static
|
2012-01-13 14:48:47 +01:00
|
|
|
|
2014-03-07 00:07:42 +01:00
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2012-06-14 06:51:56 +02:00
|
|
|
# Make a symlink from /sbin/ueventd and /sbin/watchdogd to /init
|
|
|
|
SYMLINKS := \
|
|
|
|
$(TARGET_ROOT_OUT)/sbin/ueventd \
|
|
|
|
$(TARGET_ROOT_OUT)/sbin/watchdogd
|
|
|
|
|
2010-04-21 21:04:20 +02:00
|
|
|
$(SYMLINKS): INIT_BINARY := $(LOCAL_MODULE)
|
|
|
|
$(SYMLINKS): $(LOCAL_INSTALLED_MODULE) $(LOCAL_PATH)/Android.mk
|
2010-04-22 22:34:16 +02:00
|
|
|
@echo "Symlink: $@ -> ../$(INIT_BINARY)"
|
2010-04-21 21:04:20 +02:00
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
@rm -rf $@
|
2010-04-22 22:34:16 +02:00
|
|
|
$(hide) ln -sf ../$(INIT_BINARY) $@
|
2010-04-21 21:04:20 +02:00
|
|
|
|
|
|
|
ALL_DEFAULT_INSTALLED_MODULES += $(SYMLINKS)
|
|
|
|
|
|
|
|
# We need this so that the installed files could be picked up based on the
|
|
|
|
# local module name
|
|
|
|
ALL_MODULES.$(LOCAL_MODULE).INSTALLED := \
|
|
|
|
$(ALL_MODULES.$(LOCAL_MODULE).INSTALLED) $(SYMLINKS)
|