Go to file
2019-12-03 01:53:22 +03:00
img Use tags for tests, remove duplicate test. 2019-11-12 04:22:19 +03:00
test Use tags for tests, remove duplicate test. 2019-11-12 04:22:19 +03:00
tools Get rid of losetup, fix s05k_b2k_n8k tests, set name length for mkdirrange. 2019-11-08 05:22:07 +03:00
.gitignore Make an order in test/ directory, write proper makefile. 2019-10-22 05:24:44 +03:00
cio.c New commands: cd and pwd. Display cwd in prompt. More tests. 2019-10-25 04:48:13 +03:00
GPL2.txt Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
GPL3.txt Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
kofu.c Print total number of files in directory, add s4k test. 2019-11-11 05:20:06 +03:00
kofuse.c Rename kos_fuse_lfn to kos_lfn, remove kos_fuse_init prototype. 2019-10-22 06:12:35 +03:00
kolibri.asm Fix reading at the end of file, update tests, add TODO. 2019-10-27 03:54:38 +03:00
kolibri.h Don't go into infinite loop on fs error, print file attributes as letters. 2019-11-07 02:51:55 +03:00
LICENSE Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
makefile Update README file. 2019-12-03 01:53:22 +03:00
README Update README file. 2019-12-03 01:53:22 +03:00
system.inc Use llseek syscall instead of lseek. 2018-05-15 09:54:22 +03:00
TODO Fix reading at the end of file, update tests, add TODO. 2019-10-27 03:54:38 +03:00
trace_lbr.c Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
trace_lbr.h Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
trace_lwp.c Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
trace_lwp.h Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
trace.c Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
trace.h Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00

KOFU & KOFUSE
=============

This is a common project for two related tools, kofu and kofuse. The idea is to
make userspace UNIX tools that use unchanged KolibriOS block and FS source to
test these kernel parts in your favorite developer environment.


Kofu
----

is Kolibri Filesystem in Userspace.
It is an interactive shell with commands that are wrappers around KolibriOS
kernel block and FS functions.


Kofuse
------

is a short for KolibriOS and FUSE [1]. Like kofu above but commands are
translated from FUSE calls, not entered manually.


BUILD
-----

$ KOLIBRIOS=/path/to/kolibrios make

/path/to/kolibrios is where you did `svn co svn://kolibrios.org`.


Architecture
------------

Kernel services are replaced with stubs or libc calls. Block devices are
emulated with wrappers around regular files. Shell and FUSE FS are written in C.


[1] https://github.com/libfuse/libfuse