summaryrefslogtreecommitdiffstats
path: root/fastboot/fs.h
diff options
context:
space:
mode:
authorJP Abgrall <jpa@google.com>2014-05-06 15:14:15 -0700
committerJP Abgrall <jpa@google.com>2014-05-06 15:14:15 -0700
commit7e85974fc2fc48a0cea7bb9bafcfcda863138eb6 (patch)
tree3dc283692f6bd235af8d4884a8c86431f286e300 /fastboot/fs.h
parent2d2fd4cdeac031e78a63c40d01a96a93ebb3eed8 (diff)
downloadsystem_core-7e85974fc2fc48a0cea7bb9bafcfcda863138eb6.zip
system_core-7e85974fc2fc48a0cea7bb9bafcfcda863138eb6.tar.gz
system_core-7e85974fc2fc48a0cea7bb9bafcfcda863138eb6.tar.bz2
fastboot: support for overriding format fs-type and size
This changes allows overriding the fs-type and size that are normally returned by the booloader. This is in preparation for supporting other FSes. Change-Id: I8d141a0d4d14df9fe84d3b131484e9696fcd8870 Signed-off-by: JP Abgrall <jpa@google.com>
Diffstat (limited to 'fastboot/fs.h')
-rw-r--r--fastboot/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastboot/fs.h b/fastboot/fs.h
index 65b9555..8388629 100644
--- a/fastboot/fs.h
+++ b/fastboot/fs.h
@@ -5,7 +5,7 @@
struct fs_generator;
-const struct fs_generator* fs_get_generator(const char* name);
+const struct fs_generator* fs_get_generator(const char *fs_type);
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
#endif