├── .arcconfig ├── .gitignore ├── Kbuild ├── Kconfig ├── LICENSE ├── Makefile ├── README.md ├── antfs.h ├── dir.c ├── dkms.conf ├── file.c ├── include ├── attrib.h ├── attrlist.h ├── bitmap.h ├── bootsect.h ├── cache.h ├── collate.h ├── compress.h ├── debug.h ├── device.h ├── device_io.h ├── dir.h ├── endians.h ├── index.h ├── inode.h ├── layout.h ├── lcnalloc.h ├── logfile.h ├── mft.h ├── misc.h ├── mst.h ├── ntfstime.h ├── object_id.h ├── param.h ├── random.h ├── reparse.h ├── runlist.h ├── support.h ├── types.h ├── unistr.h └── volume.h ├── init_avm ├── inode.c ├── libntfs-3g ├── attrib.c ├── attrlist.c ├── bitmap.c ├── bootsect.c ├── cache.c ├── collate.c ├── compress.c ├── device.c ├── dir.c ├── index.c ├── inode.c ├── lcnalloc.c ├── linux_io.c ├── logfile.c ├── mft.c ├── misc.c ├── mst.c ├── object_id.c ├── reparse.c ├── runlist.c ├── unistr.c └── volume.c ├── scripts ├── antfs_block_zero.sh ├── antfs_dd.sh ├── antfs_files.sh ├── antfs_images.sh ├── antfs_mv.sh ├── antfs_remount.sh └── layla │ ├── antfs_concurrency.lts │ ├── antfs_files.lts │ ├── antfs_ftp.lts │ ├── antfs_move.lts │ ├── antfs_remount.lts │ ├── antfs_setup.lts │ └── howto ├── super.c └── todo.txt /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/.gitignore -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/Kbuild -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/README.md -------------------------------------------------------------------------------- /antfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/antfs.h -------------------------------------------------------------------------------- /dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/dir.c -------------------------------------------------------------------------------- /dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/dkms.conf -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/file.c -------------------------------------------------------------------------------- /include/attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/attrib.h -------------------------------------------------------------------------------- /include/attrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/attrlist.h -------------------------------------------------------------------------------- /include/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/bitmap.h -------------------------------------------------------------------------------- /include/bootsect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/bootsect.h -------------------------------------------------------------------------------- /include/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/cache.h -------------------------------------------------------------------------------- /include/collate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/collate.h -------------------------------------------------------------------------------- /include/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/compress.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/device.h -------------------------------------------------------------------------------- /include/device_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/device_io.h -------------------------------------------------------------------------------- /include/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/dir.h -------------------------------------------------------------------------------- /include/endians.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/endians.h -------------------------------------------------------------------------------- /include/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/index.h -------------------------------------------------------------------------------- /include/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/inode.h -------------------------------------------------------------------------------- /include/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/layout.h -------------------------------------------------------------------------------- /include/lcnalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/lcnalloc.h -------------------------------------------------------------------------------- /include/logfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/logfile.h -------------------------------------------------------------------------------- /include/mft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/mft.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/mst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/mst.h -------------------------------------------------------------------------------- /include/ntfstime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/ntfstime.h -------------------------------------------------------------------------------- /include/object_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/object_id.h -------------------------------------------------------------------------------- /include/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/param.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/random.h -------------------------------------------------------------------------------- /include/reparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/reparse.h -------------------------------------------------------------------------------- /include/runlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/runlist.h -------------------------------------------------------------------------------- /include/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/support.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/types.h -------------------------------------------------------------------------------- /include/unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/unistr.h -------------------------------------------------------------------------------- /include/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/include/volume.h -------------------------------------------------------------------------------- /init_avm: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Nothing to do right now... 4 | # 5 | exit 0 6 | -------------------------------------------------------------------------------- /inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/inode.c -------------------------------------------------------------------------------- /libntfs-3g/attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/attrib.c -------------------------------------------------------------------------------- /libntfs-3g/attrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/attrlist.c -------------------------------------------------------------------------------- /libntfs-3g/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/bitmap.c -------------------------------------------------------------------------------- /libntfs-3g/bootsect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/bootsect.c -------------------------------------------------------------------------------- /libntfs-3g/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/cache.c -------------------------------------------------------------------------------- /libntfs-3g/collate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/collate.c -------------------------------------------------------------------------------- /libntfs-3g/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/compress.c -------------------------------------------------------------------------------- /libntfs-3g/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/device.c -------------------------------------------------------------------------------- /libntfs-3g/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/dir.c -------------------------------------------------------------------------------- /libntfs-3g/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/index.c -------------------------------------------------------------------------------- /libntfs-3g/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/inode.c -------------------------------------------------------------------------------- /libntfs-3g/lcnalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/lcnalloc.c -------------------------------------------------------------------------------- /libntfs-3g/linux_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/linux_io.c -------------------------------------------------------------------------------- /libntfs-3g/logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/logfile.c -------------------------------------------------------------------------------- /libntfs-3g/mft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/mft.c -------------------------------------------------------------------------------- /libntfs-3g/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/misc.c -------------------------------------------------------------------------------- /libntfs-3g/mst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/mst.c -------------------------------------------------------------------------------- /libntfs-3g/object_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/object_id.c -------------------------------------------------------------------------------- /libntfs-3g/reparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/reparse.c -------------------------------------------------------------------------------- /libntfs-3g/runlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/runlist.c -------------------------------------------------------------------------------- /libntfs-3g/unistr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/unistr.c -------------------------------------------------------------------------------- /libntfs-3g/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/libntfs-3g/volume.c -------------------------------------------------------------------------------- /scripts/antfs_block_zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/antfs_block_zero.sh -------------------------------------------------------------------------------- /scripts/antfs_dd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/antfs_dd.sh -------------------------------------------------------------------------------- /scripts/antfs_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/antfs_files.sh -------------------------------------------------------------------------------- /scripts/antfs_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/antfs_images.sh -------------------------------------------------------------------------------- /scripts/antfs_mv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/antfs_mv.sh -------------------------------------------------------------------------------- /scripts/antfs_remount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/antfs_remount.sh -------------------------------------------------------------------------------- /scripts/layla/antfs_concurrency.lts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/layla/antfs_concurrency.lts -------------------------------------------------------------------------------- /scripts/layla/antfs_files.lts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/layla/antfs_files.lts -------------------------------------------------------------------------------- /scripts/layla/antfs_ftp.lts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/layla/antfs_ftp.lts -------------------------------------------------------------------------------- /scripts/layla/antfs_move.lts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/layla/antfs_move.lts -------------------------------------------------------------------------------- /scripts/layla/antfs_remount.lts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/layla/antfs_remount.lts -------------------------------------------------------------------------------- /scripts/layla/antfs_setup.lts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/layla/antfs_setup.lts -------------------------------------------------------------------------------- /scripts/layla/howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/scripts/layla/howto -------------------------------------------------------------------------------- /super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/super.c -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sembedded/antfs/HEAD/todo.txt --------------------------------------------------------------------------------