Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 627 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 627 Bytes

FAT file system

All Files

  • README.md
  • test.sh
  • myfs.h
  • myfs.c
  • Makefile

Platform

  • freeBSD 11.2

Manual

Compile and install file system

  • $ make
  • Then a folder named mountpoint will be created.
  • Enter the folder to use the file system.

Test the file system

  • $ make test
  • Run test.sh to test the performance of the file system.

Change the block size and block number

  • Open myfs.h, you will see two macros
#define BLOCK_SIZE 512
#define BLOCK_NUMBER 0x00100000
  • Change these numbers and recompile.

Check debug log

  • Open debug to see what's happening.