summaryrefslogtreecommitdiffstats
path: root/fastboot/Android.mk
diff options
context:
space:
mode:
authorDmitry Grinberg <dmitrygr@google.com>2014-03-11 18:28:15 -0700
committerJP Abgrall <jpa@google.com>2014-05-06 12:28:37 -0700
commite6f3e9bd2656fe132f829ed035fdea0cb111369d (patch)
treefc7388fdb90816ec5f6d506464394b5d879b2a9f /fastboot/Android.mk
parent52dd7cc0bddbe6092f818827efd584466234d67b (diff)
downloadcore-e6f3e9bd2656fe132f829ed035fdea0cb111369d.tar.gz
core-e6f3e9bd2656fe132f829ed035fdea0cb111369d.tar.bz2
core-e6f3e9bd2656fe132f829ed035fdea0cb111369d.zip
fastboot: allow format on devices with small buffers
Formatting large partitions on devices with small transfer buffers did not work before since format used a strange path through the code to send data. It now uses the normal path. Also cleaned up a bit. FS code now lives in a separate file and the custom path for format is gone. Change-Id: If4e01cabc2e250b7c02ca7ce8c268e51d49e1529
Diffstat (limited to 'fastboot/Android.mk')
-rw-r--r--fastboot/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastboot/Android.mk b/fastboot/Android.mk
index b9b3c92cc..05ddf2ae9 100644
--- a/fastboot/Android.mk
+++ b/fastboot/Android.mk
@@ -18,7 +18,7 @@ include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../mkbootimg \
$(LOCAL_PATH)/../../extras/ext4_utils
-LOCAL_SRC_FILES := protocol.c engine.c bootimg.c fastboot.c util.c
+LOCAL_SRC_FILES := protocol.c engine.c bootimg.c fastboot.c util.c fs.c
LOCAL_MODULE := fastboot
LOCAL_MODULE_TAGS := debug
LOCAL_CFLAGS += -std=gnu99