Message ID | 20210407053419.449796-2-gregkh@linuxfoundation.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | kbuild: unify the install.sh script usage | expand |
On Wed, Apr 07, 2021 at 07:34:00AM +0200, Greg Kroah-Hartman wrote: > To unify the different architecture kernel installation scripts, start > out with the one they all were based on, the x86 script. Move it from > arch/x86/boot/ into scripts/ so that all architectures can call it in > the future. > > Cc: Thomas Gleixner <tglx@linutronix.de> > Cc: Ingo Molnar <mingo@redhat.com> > Cc: Borislav Petkov <bp@alien8.de> > Cc: x86@kernel.org > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Kees Cook <keescook@chromium.org>
diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index fe605205b4ce..17c7718c1a4a 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile @@ -157,5 +157,5 @@ bzlilo: if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi install: - sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(obj)/bzImage \ + sh $(srctree)/scripts/install.sh $(KERNELRELEASE) $(obj)/bzImage \ System.map "$(INSTALL_PATH)" diff --git a/arch/x86/boot/install.sh b/scripts/install.sh similarity index 100% rename from arch/x86/boot/install.sh rename to scripts/install.sh
To unify the different architecture kernel installation scripts, start out with the one they all were based on, the x86 script. Move it from arch/x86/boot/ into scripts/ so that all architectures can call it in the future. Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Borislav Petkov <bp@alien8.de> Cc: x86@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> --- arch/x86/boot/Makefile | 2 +- {arch/x86/boot => scripts}/install.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {arch/x86/boot => scripts}/install.sh (100%)