update readme..

This commit is contained in:
Kelvin Sherlock
2026-01-11 13:41:27 -05:00
parent b63d53e14e
commit 06dbb8b90b
+6 -9
View File
@@ -3,17 +3,13 @@
This is a read-only FST for the Minix v1 and v1L (linux extended) file system.
Minix (v1) is a simplified unix-type filesystem with 1k blocks/zones, 16-bit inodes (this implies 65535 maximum distinct files), and 16-bit file offsets (this implies a maximum volume size of 64MB). Filenames are limited to 14 characters (normal) or 30 characters (linux extended).
## Known issues:
### VolumeGS:
* Always reports 0 free blocks.
* Since minix doesn't support volume labels (I plan to extend to do so eventually), all disks are named "minix". This implies only 1 minix disk may be mounted at a time.
### ReadGS / GetDirEntryGS:
* Only the first 7K of a file may be read.
* Since minix doesn't support volume labels (I may extend the superblock to support them in the future), all disks are named "minix". This implies only 1 minix disk may be mounted at a time.
### General:
@@ -21,10 +17,11 @@ This is a read-only FST for the Minix v1 and v1L (linux extended) file system.
* ProDOS 16 versions of the calls haven't been extensively tested.
* Double indirect blocks probably haven't been tested.
* File types? We don't need no stinkin' file types.
### Non-FST Bugs:
* StdFileDialog (Save) reports 65536 free of 800k
* Finder windows display garbage for the FST name (should be fixed in GS.OS 6.0.4 :)