From f9c54129a396b5d3a2e4c96af4fb9a9a20b80c7e Mon Sep 17 00:00:00 2001 From: Sebastian Fricke Date: Wed, 13 May 2020 17:55:44 +0200 Subject: [PATCH] linux-interrupts-2: Deprecated Makefile assignment Replace a deprecated Makefile assignment with the current version. Change was introduced with the following commit: https://lkml.org/lkml/2019/10/24/377 Signed-off-by: Sebastian Fricke --- Interrupts/linux-interrupts-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interrupts/linux-interrupts-2.md b/Interrupts/linux-interrupts-2.md index e041061..3d69382 100644 --- a/Interrupts/linux-interrupts-2.md +++ b/Interrupts/linux-interrupts-2.md @@ -78,7 +78,7 @@ As you can remember the 32-bit entry point is in the [arch/x86/boot/compressed/h But the 32-bit mode entry point is the second file in our case. The first file is not even compiled for `x86_64`. Let's look at the [arch/x86/boot/compressed/Makefile](https://github.com/torvalds/linux/blob/16f73eb02d7e1765ccab3d2018e0bd98eb93d973/arch/x86/boot/compressed/Makefile): ``` -vmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o \ +vmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/kernel_info.o $(obj)/head_$(BITS).o \ ... ... ```