1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
My OS kernel attempt =)
Find a file
2017-11-09 06:20:45 +00:00
arch Add module "pagedir" 2017-11-09 06:20:45 +00:00
include/kernelmq Add const KERNELMQ_INFO_CMDLINE_SLEN_MAX 2017-11-08 08:35:08 +00:00
iso Change ext from ".multiboot" to ".multiboot2" 2017-11-08 10:07:33 +00:00
libk Separate source tree for architecture-independent code 2017-11-08 11:34:14 +00:00
modules Add two dummy modules 2017-11-05 18:24:19 +00:00
src Additional check 2017-11-08 12:39:56 +00:00
test Makefile refactoring 2017-11-09 06:06:05 +00:00
.gitignore Target "none" generates valid host executable 2017-11-08 12:09:14 +00:00
configure Move configuration to architecture directories 2017-11-08 12:29:42 +00:00
LICENSE Fix copyright 2017-11-01 04:30:06 +00:00
Makefile For "none" run tests by default 2017-11-09 06:08:10 +00:00
README.md Fix Makefile fully 2017-11-08 11:11:31 +00:00

KernelMQ

Message queue with additional IPC capabilities implemented as multiboot microkernel.

Glossary

  • (unsigned long) addr - aligned physical address, shifted right with number of zero bits
  • (unsigned long) base - physical or virtual start address
  • (unsigned long) limit - physical or virtual end address (included)
  • (unsigned long) size - size in bytes
  • (unsigned int) length - number of entries
  • (unsigned int) slen - string length excluding the terminating null byte

Dependencies

Build youself:

  • Cross-compiler for i686-elf

Debian 9.2 packages:

  • make
  • grub-pc-bin
  • qemu-system-x86

Build and run

./configure x86
make clean
make run

Run tests

./configure none
make clean
make test