aboutsummaryrefslogtreecommitdiffstats
path: root/edify/Android.mk
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-06-10 14:11:53 -0700
committerDoug Zongker <dougz@android.com>2009-06-11 16:25:29 -0700
commit9931f7f3c1288171319e9ff7d053ebaad07db720 (patch)
tree42ae5b40309f6ea3410c5ad496f81368675274f7 /edify/Android.mk
parent9b9c2114bd7d02200ce43cb9ec513473079dfad9 (diff)
downloadbootable_recovery-9931f7f3c1288171319e9ff7d053ebaad07db720.zip
bootable_recovery-9931f7f3c1288171319e9ff7d053ebaad07db720.tar.gz
bootable_recovery-9931f7f3c1288171319e9ff7d053ebaad07db720.tar.bz2
edify extensions for OTA package installation, part 1
Adds the following edify functions: mount unmount format show_progress delete delete_recursive package_extract symlink set_perm set_perm_recursive This set is enough to extract and install the system part of a (full) OTA package. Adds the updater binary that extracts an edify script from the OTA package and then executes it. Minor changes to the edify core (adds a sleep() builtin for debugging, adds "." to the set of characters that can appear in an unquoted string).
Diffstat (limited to 'edify/Android.mk')
-rw-r--r--edify/Android.mk17
1 files changed, 8 insertions, 9 deletions
diff --git a/edify/Android.mk b/edify/Android.mk
index 803fba2..fac0ba7 100644
--- a/edify/Android.mk
+++ b/edify/Android.mk
@@ -26,15 +26,14 @@ LOCAL_YACCFLAGS := -v
include $(BUILD_HOST_EXECUTABLE)
-# #
-# # Build the device-side library
-# #
-# include $(CLEAR_VARS)
+#
+# Build the device-side library
+#
+include $(CLEAR_VARS)
-# LOCAL_SRC_FILES := $(edify_src_files)
-# LOCAL_SRC_FILES += $(edify_test_files)
+LOCAL_SRC_FILES := $(edify_src_files)
-# LOCAL_CFLAGS := $(edify_cflags)
-# LOCAL_MODULE := libedify
+LOCAL_CFLAGS := $(edify_cflags)
+LOCAL_MODULE := libedify
-# include $(BUILD_STATIC_LIBRARY)
+include $(BUILD_STATIC_LIBRARY)