mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Allow to mount Opera filesystem.
This commit is contained in:
@@ -1,4 +1,3 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using DiscImageChef.CommonTypes;
|
using DiscImageChef.CommonTypes;
|
||||||
@@ -54,9 +53,10 @@ namespace DiscImageChef.Filesystems
|
|||||||
image = imagePlugin;
|
image = imagePlugin;
|
||||||
int firstRootBlock = BigEndianBitConverter.ToInt32(sbSector, Marshal.SizeOf<SuperBlock>());
|
int firstRootBlock = BigEndianBitConverter.ToInt32(sbSector, Marshal.SizeOf<SuperBlock>());
|
||||||
rootDirectoryCache = DecodeDirectory(firstRootBlock);
|
rootDirectoryCache = DecodeDirectory(firstRootBlock);
|
||||||
|
directoryCache = new Dictionary<string, Dictionary<string, DirectoryEntryWithPointers>>();
|
||||||
mounted = true;
|
mounted = true;
|
||||||
|
|
||||||
throw new NotImplementedException();
|
return Errno.NoError;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Errno Unmount()
|
public Errno Unmount()
|
||||||
|
|||||||
Reference in New Issue
Block a user