Ivan Baravy
4b8b418f94
dd if=/path/to/file status=none bs=1 skip=$((0xblah)) count=$((0xblah)) | rhash --sha3-256 --simple - |
||
---|---|---|
img | ||
test | ||
tools | ||
.gitignore | ||
covpreproc.c | ||
GPL2.txt | ||
GPL3.txt | ||
kolibri.h | ||
LICENSE | ||
lodepng.c | ||
lodepng.h | ||
makefile | ||
README | ||
syscalls.h | ||
system.inc | ||
TODO | ||
trace_lbr.c | ||
trace_lbr.h | ||
trace.c | ||
trace.h | ||
umka_fuse.c | ||
umka_shell.c | ||
umka.asm | ||
vdisk.c | ||
vdisk.h |
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 kofu above but commands are translated from FUSE calls, not entered manually. Can *potentially* be used to run xfstests (cross-fs-tests) and automated 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/