mirror of
https://github.com/ksherlock/minix.fst.git
synced 2024-12-26 00:31:22 +00:00
MINIX File System Translator
.gitignore | ||
close.aii | ||
debug.aii | ||
device.aii | ||
flush.aii | ||
fst.equ | ||
fst.macros | ||
get_dev_num.aii | ||
get_dir_entry.aii | ||
get_eof.aii | ||
get_file_info.aii | ||
get_mark.aii | ||
globals.aii | ||
gsos.equ | ||
hexdump2.text | ||
hexdump.text | ||
id_disk.aii | ||
judge_name.aii | ||
main.aii | ||
Makefile | ||
minix.equ | ||
open.aii | ||
p.equ | ||
params.aii | ||
read.aii | ||
README.md | ||
records.equ | ||
set_mark.aii | ||
stat.equ | ||
stubs.aii | ||
tables.aii | ||
volume.aii |
Minix FST
9/13/2015
This is a read-only FST for the Minix v1 and v1L (linux extended) file system.
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.
General:
-
I haven't quite figured out the proper way to handle disk swapping (all FSTs seem to do it different). For now, it's probably best if you just avoid swapping disks while a file is open :).
-
ProDOS 16 versions of the calls haven't been extensively tested.
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 :)