From 864b8086965103bf619647253fed69947c20e8b0 Mon Sep 17 00:00:00 2001 From: Adam Madsen Date: Wed, 18 Nov 2020 17:42:46 -0600 Subject: [PATCH] [core] since hook is the default, add NOHOOK argument to Make --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0a3b009..b8a0652 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,6 @@ clean: load: all grep -q '^vendor_reset' /proc/modules && sudo rmmod vendor_reset || true - sudo insmod ./vendor-reset.ko $(if $(HOOK),install_hook=yes,) + sudo insmod ./vendor-reset.ko $(if $(NOHOOK),install_hook=no,) .PHONY: userspace load all install