diff options
| author | Dmitry Grinberg <dmitrygr@google.com> | 2014-03-11 18:28:15 -0700 |
|---|---|---|
| committer | Dmitry Grinberg <dmitrygr@google.com> | 2014-03-13 15:55:11 -0700 |
| commit | 0d4a4cb8aa16fdb3897eaa89a62cb055d8dcbdf9 (patch) | |
| tree | cf9c186047ea4ad790657b1059d4b78294656212 /fastboot/Android.mk | |
| parent | 93412622859014cc8bd39c30101096d03300845c (diff) | |
| download | system_core-0d4a4cb8aa16fdb3897eaa89a62cb055d8dcbdf9.zip system_core-0d4a4cb8aa16fdb3897eaa89a62cb055d8dcbdf9.tar.gz system_core-0d4a4cb8aa16fdb3897eaa89a62cb055d8dcbdf9.tar.bz2 | |
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.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fastboot/Android.mk b/fastboot/Android.mk index b9b3c92..05ddf2a 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 |
