From 4eb7e7d783f4357d6b11968a39c0e0b31b16e7d0 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Date: Sun, 5 Jul 2015 02:13:44 +0500 Subject: [PATCH] Change first heading to overview --- Booting/linux-bootstrap-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-2.md b/Booting/linux-bootstrap-2.md index 1ce8342..c335700 100644 --- a/Booting/linux-bootstrap-2.md +++ b/Booting/linux-bootstrap-2.md @@ -1,7 +1,7 @@ Kernel booting process. Part 2. ================================================================================ -First steps in the kernel setup +Overview -------------------------------------------------------------------------------- We started to dive into linux kernel internals in the previous [part](linux-bootstrap-1.md) and saw the initial part of the kernel setup code. We stopped at the first call to the `main` function (which is the first function written in C) from [arch/x86/boot/main.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/main.c).