mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
a199d47615
Now it's possible to have more than one instance of a given file system. For example, one could use more that one ROM file system in different physical locations (a possible configuration is internal Flash and external serial memories). This mechanism is currently implemented only in the device manager (devman.c), actual instance implementation require per-FS support (to be implemented later).
13 lines
141 B
C
13 lines
141 B
C
// MMC filesystem
|
|
|
|
#ifndef __MMCFS_H__
|
|
#define __MMCFS_H__
|
|
|
|
#include "type.h"
|
|
#include "devman.h"
|
|
|
|
// FS functions
|
|
int mmcfs_init();
|
|
|
|
#endif
|