diff --git a/contrib/Makefile b/contrib/Makefile index 1d72d6d..02031eb 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -4,7 +4,7 @@ all: install: all $(INSTALL) -d $(DRACUTDIR) - $(INSTALL) module-setup.sh kpatch-apply-all.sh $(DRACUTDIR) + $(INSTALL) module-setup.sh kpatch-load-all.sh $(DRACUTDIR) uninstall: $(RM) -R $(DRACUTDIR) diff --git a/contrib/kpatch-apply-all.sh b/contrib/kpatch-load-all.sh similarity index 85% rename from contrib/kpatch-apply-all.sh rename to contrib/kpatch-load-all.sh index 82ed592..7332ed3 100755 --- a/contrib/kpatch-apply-all.sh +++ b/contrib/kpatch-load-all.sh @@ -5,4 +5,4 @@ # Copyright 2014 Red Hat, Inc. # Josh Poimboeuf -kpatch apply --all +kpatch load --all diff --git a/contrib/module-setup.sh b/contrib/module-setup.sh index e5b4217..5903031 100755 --- a/contrib/module-setup.sh +++ b/contrib/module-setup.sh @@ -42,5 +42,5 @@ install() { fi # install hook script - inst_hook pre-udev 00 "$moddir/kpatch-apply-all.sh" + inst_hook pre-udev 00 "$moddir/kpatch-load-all.sh" }