kempniu / yafut

Yet Another File UTility
GNU General Public License v2.0
4 stars 3 forks source link

Add a storage abstraction layer #27

Closed kempniu closed 3 months ago

kempniu commented 3 months ago

Yaffs file systems can be stored on various types of MTD devices and also in regular files. Each of these storage types needs to be driven slightly differently, but setting all of them up boils down to preparing the same structure defined by Yaffs code (struct yaffs_dev). Add an abstraction layer shared by all Yaffs storage types that serves as a focal point for lower-level layers and prepares a storage-type-specific struct yaffs_dev for use by higher-level layers.