diff options
author | Coywolf Qi Hunt <coywolf@lovecn.org> | 2005-06-21 20:15:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 21:46:22 -0400 |
commit | 2894801db1cea527885f7a8679e5a88fb7377d9c (patch) | |
tree | 73789d1e0f35c622e397659e57380278a23df362 /arch/i386 | |
parent | 0f667ff5c0282f686b4f739e46353779b3cfa2f6 (diff) |
[PATCH] kbuild: display compile version
I am always trying to make sure I've booted the right kernel after a new
install. Too paranoid maybe. But I guess there're other people like me.
So let's make kbuild display the compile version number at the end to give
us a hint. I know we may be booting vmlinux someday, but don't care about
it for now.
Signed-off-by: Coywolf Qi Hunt <coywolf@lovecn.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/boot/Makefile b/arch/i386/boot/Makefile index aa7064a75ee6..43cd6220ee49 100644 --- a/arch/i386/boot/Makefile +++ b/arch/i386/boot/Makefile | |||
@@ -48,7 +48,7 @@ cmd_image = $(obj)/tools/build $(BUILDFLAGS) $(obj)/bootsect $(obj)/setup \ | |||
48 | $(obj)/zImage $(obj)/bzImage: $(obj)/bootsect $(obj)/setup \ | 48 | $(obj)/zImage $(obj)/bzImage: $(obj)/bootsect $(obj)/setup \ |
49 | $(obj)/vmlinux.bin $(obj)/tools/build FORCE | 49 | $(obj)/vmlinux.bin $(obj)/tools/build FORCE |
50 | $(call if_changed,image) | 50 | $(call if_changed,image) |
51 | @echo 'Kernel: $@ is ready' | 51 | @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' |
52 | 52 | ||
53 | $(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE | 53 | $(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE |
54 | $(call if_changed,objcopy) | 54 | $(call if_changed,objcopy) |