Go to file
2020-05-19 14:21:47 +03:00
img Improve branch coverage for error-free cases. 2020-03-12 00:51:48 +03:00
linux Add background related functions; umka_os works. 2020-05-11 06:38:44 +03:00
test Replace NODE.Integer64 with NODE.Integer. 2020-05-19 13:52:05 +03:00
tools Coverage and testing harness improvements. 2020-03-08 20:58:45 +03:00
.gitignore Add ACPI and PCI test files from real HW. 2020-05-18 16:20:17 +03:00
covpreproc.c Introduce COVERAGE_ON/OFF macros, rename shell functions to shell_*. 2020-03-10 00:03:57 +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
indent_begin_end.py Add script indent_begin_end.py to make logs more readable. 2020-05-19 14:21:47 +03:00
LICENSE Collect coverage via LBR profiling. 2019-10-09 02:35:47 +03:00
lodepng.c Update LodePNG, add -Wswitch-enum option. 2020-02-20 00:59:16 +03:00
lodepng.h Update LodePNG, add -Wswitch-enum option. 2020-02-20 00:59:16 +03:00
makefile Move shell from umka_shell to separate module. 2020-05-10 07:21:49 +03:00
README Fix typo in README: kofu -> umka_shell. 2020-05-05 18:55:49 +03:00
shell.c Make ACPI logs reproducible and add ACPI reference logs. 2020-05-18 22:07:53 +03:00
shell.h Move shell from umka_shell to separate module. 2020-05-10 07:21:49 +03:00
system.inc Run net stack, jump to the osloop. Compiles, doesn't crash. 2020-05-09 05:15:57 +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 Merge kolibri.h and syscalls.h, rename kolibri.h to umka.h. 2020-05-07 04:57:01 +03:00
trace_lbr.h Introduce COVERAGE_ON/OFF macros, rename shell functions to shell_*. 2020-03-10 00:03:57 +03:00
trace.c New tests and images for coverage. Don't use sudo for mkfs. 2020-03-11 06:02:33 +03:00
trace.h New tests and images for coverage. Don't use sudo for mkfs. 2020-03-11 06:02:33 +03:00
umka_fuse.c Add background related functions; umka_os works. 2020-05-11 06:38:44 +03:00
umka_os.c Add background related functions; umka_os works. 2020-05-11 06:38:44 +03:00
umka_shell.c Add background related functions; umka_os works. 2020-05-11 06:38:44 +03:00
umka.asm Initialize TASKDATA.pid field, this fixes test 016. 2020-05-12 01:01:33 +03:00
umka.h Fix ARP wrappers and add ARP test stub: test/025. 2020-05-12 02:35:22 +03:00
vdisk.c Merge kolibri.h and syscalls.h, rename kolibri.h to umka.h. 2020-05-07 04:57:01 +03:00
vdisk.h Merge kolibri.h and syscalls.h, rename kolibri.h to umka.h. 2020-05-07 04:57:01 +03:00
vnet.c Merge kolibri.h and syscalls.h, rename kolibri.h to umka.h. 2020-05-07 04:57:01 +03:00
vnet.h Merge kolibri.h and syscalls.h, rename kolibri.h to umka.h. 2020-05-07 04:57:01 +03:00

UMKa -- User-Mode KolibriOS developer tools
===========================================

This is a common project for a set of KolibriOS developer tools which are based
on original KolibriOS code wrapped and hacked as to run in the UNIX programming
environment. The idea is to make userspace UNIX tools that use as much unchanged
KolibriOS source as possible to test architecture-independent parts of the
kernel in your favorite developer environment.


umka_shell
----------

is an interactive shell with commands that are wrappers around KolibriOS kernel
block, FS, UI and other functions. Can read input from the keyboard, stdin and a
file, i.e. can be used for automated testing.


umka_fuse
---------

is like umka_shell above but commands are translated from FUSE calls, not
entered manually. Can *potentially* be used to run xfstests (cross-fs-tests) and
automatestrcatd tests against reference FS implementations.


BUILD
-----

$ KOLIBRI=/path/to/kolibrios make

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


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

Kernel services are replaced with stubs, wrappers around userspace
implementation or libc calls. Block devices are emulated with regular files.
Framebuffer can be dumped to disk as image file.


Troubleshooting
---------------

No troubles -- no shooting.


Links & Acknowledgements
------------------------

[1] Filesystem in Userspace library
    https://github.com/libfuse/libfuse

[2] LodePNG by Lode Vandevenne
    https://lodev.org/lodepng/