diff options
Diffstat (limited to 'payload_generator/ext2_filesystem.h')
-rw-r--r-- | payload_generator/ext2_filesystem.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/payload_generator/ext2_filesystem.h b/payload_generator/ext2_filesystem.h index c87849ca..66cb65f5 100644 --- a/payload_generator/ext2_filesystem.h +++ b/payload_generator/ext2_filesystem.h @@ -40,12 +40,17 @@ class Ext2Filesystem : public FilesystemInterface { // and bitmap tables. bool GetFiles(std::vector<File>* files) const override; + bool LoadSettings(chromeos::KeyValueStore* store) const override; + private: Ext2Filesystem() = default; // The ext2 main data structure holding the filesystem. ext2_filsys filsys_ = nullptr; + // The file where the filesystem is stored. + std::string filename_; + DISALLOW_COPY_AND_ASSIGN(Ext2Filesystem); }; |