Skip to content

Instantly share code, notes, and snippets.

View CastleOnTheHill's full-sized avatar
🎯
Focusing

CastleOnTheHill CastleOnTheHill

🎯
Focusing
  • Sun Yat-sen University
  • GuangZhou
View GitHub Profile
@HugoGuiroux
HugoGuiroux / Makefile
Created January 12, 2016 09:43
Kernel module tracepoint hook
obj-m := my_module.o
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) M=$(PWD) modules
unload:
sudo rmmod ./my_module.ko
load:
sudo insmod ./my_module.ko