Initial Commit

This commit is contained in:
2022-12-23 02:44:32 +01:00
commit e354db3645
11 changed files with 672 additions and 0 deletions

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
obj-m += rtkit.o
KERNEL_ROOT=/lib/modules/$(shell uname -r)/build
all: modules
modules:
@$(MAKE) -C $(KERNEL_ROOT) M=$(shell pwd) modules
clean:
@$(MAKE) -C $(KERNEL_ROOT) M=$(shell pwd) clean
install: rtkit.ko
insmod rtkit.ko
uninstall:
rmmod rtkit