mirror of
https://github.com/openharmony/third_party_rust_nix.git
synced 2026-07-19 15:23:54 -04:00
b697466575
- init_module and finit_module to load kernel modules - delete_module to unload kernel modules Signed-off-by: Pascal Bach <pascal.bach@nextrem.ch>
8 lines
167 B
Makefile
8 lines
167 B
Makefile
obj-m += hello.o
|
|
|
|
all:
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
|
|
|
|
clean:
|
|
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean
|