diff --git a/System/Libraries/FileSystem.HC b/System/Libraries/FileSystem.HC index 1027441..b23978d 100644 --- a/System/Libraries/FileSystem.HC +++ b/System/Libraries/FileSystem.HC @@ -72,6 +72,9 @@ U8* @filesystem_resolve_path(U8* path) I64 @filesystem_get_type(U8* path) { + // FIXME: We are always returning RedSea until FileSystem library and APIs are rewritten. + return FS_TYPE_REDSEA; + if (!MemCmp(path, "/mnt/redsea/", 12) && StrLen(path) > 12) return FS_TYPE_REDSEA; if (!MemCmp(path, "/sys/", 5))