From 3083d4ef85b914362c1f7b8c05740317ee420372 Mon Sep 17 00:00:00 2001 From: Josh Poimboeuf Date: Mon, 14 Apr 2014 12:27:55 -0500 Subject: [PATCH] contrib: change kpatch-apply-all to kpatch-load-all --- contrib/Makefile | 2 +- contrib/{kpatch-apply-all.sh => kpatch-load-all.sh} | 2 +- contrib/module-setup.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename contrib/{kpatch-apply-all.sh => kpatch-load-all.sh} (85%) 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" }