7e85974fc2
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>
12 lines
243 B
C
12 lines
243 B
C
#ifndef _FS_H_
|
|
#define _FH_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
struct fs_generator;
|
|
|
|
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
|
|
|