From c283d6a99b3552fa4d50acb57583a148f4f1baea Mon Sep 17 00:00:00 2001 From: Nan Xiao Date: Mon, 27 Jul 2015 21:20:28 +0800 Subject: [PATCH] Update how_kernel_compiled.md Fix typo. --- Misc/how_kernel_compiled.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/how_kernel_compiled.md b/Misc/how_kernel_compiled.md index b313dfe..ee9097b 100644 --- a/Misc/how_kernel_compiled.md +++ b/Misc/how_kernel_compiled.md @@ -254,7 +254,7 @@ The `all:` target is the default when no target is given on the command line. Yo vmlinux: scripts/link-vmlinux.sh $(vmlinux-deps) FORCE ``` -The `vmlinux` is is the Linux kernel in an statically linked executable file format. The [scripts/link-vmlinux.sh](https://github.com/torvalds/linux/blob/master/scripts/link-vmlinux.sh) script links combines different compiled subsystems into vmlinux. The second target is the `vmlinux-deps` that defined as: +The `vmlinux` is the Linux kernel in a statically linked executable file format. The [scripts/link-vmlinux.sh](https://github.com/torvalds/linux/blob/master/scripts/link-vmlinux.sh) script links and combines different compiled subsystems into vmlinux. The second target is the `vmlinux-deps` that defined as: ```Makefile vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN)