| 774 | } |
| 775 | |
| 776 | bool MountSystem::mount(String root,FileSystemRef fs) |
| 777 | { |
| 778 | MountFS mount; |
| 779 | mount.root = root; |
| 780 | mount.path = "/"; |
| 781 | mount.fileSystem = fs; |
| 782 | mMountList.push_back(mount); |
| 783 | return true; |
| 784 | } |
| 785 | |
| 786 | bool MountSystem::mount(String root,const Path &path) |
| 787 | { |