From 51a0e82eb29a6dfc79f93479883383fbdbf8bcc2 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Wed, 5 Sep 2012 15:24:24 -0400 Subject: TWRP-ify AOSP code Pull in most TWRP sources Stub out partition management code Make it compile -- probably will not boot Kind of a mess but have to start somewhere --- crypto/fs_mgr/Android.mk | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 crypto/fs_mgr/Android.mk (limited to 'crypto/fs_mgr/Android.mk') diff --git a/crypto/fs_mgr/Android.mk b/crypto/fs_mgr/Android.mk new file mode 100644 index 000000000..8834282e7 --- /dev/null +++ b/crypto/fs_mgr/Android.mk @@ -0,0 +1,33 @@ +# Copyright 2011 The Android Open Source Project + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES:= fs_mgr.c + +LOCAL_C_INCLUDES := $(LOCAL_PATH)/include + +LOCAL_MODULE:= libfs_mgrtwrp +LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include + +include $(BUILD_STATIC_LIBRARY) + + + +#include $(CLEAR_VARS) + +#LOCAL_SRC_FILES:= fs_mgr_main.c + +#LOCAL_C_INCLUDES := $(LOCAL_PATH)/include + +#LOCAL_MODULE:= fs_mgr + +#LOCAL_MODULE_TAGS := optional +#LOCAL_FORCE_STATIC_EXECUTABLE := true +#LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)/sbin +#LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED) + +#LOCAL_STATIC_LIBRARIES := libfs_mgr libcutils libc + +#include $(BUILD_EXECUTABLE) + -- cgit v1.2.3