From 2ae2dfb6af6b02f758302856ff02df71d9945f18 Mon Sep 17 00:00:00 2001 From: 0xAX Date: Sun, 22 Mar 2015 19:50:36 +0600 Subject: [PATCH] Update linux-initialization-3.md --- Initialization/linux-initialization-3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Initialization/linux-initialization-3.md b/Initialization/linux-initialization-3.md index 0b6c189..3e95f35 100644 --- a/Initialization/linux-initialization-3.md +++ b/Initialization/linux-initialization-3.md @@ -1,10 +1,10 @@ Kernel initialization. Part 3. ================================================================================ -Kernel entry point +Last preparations before the kernel entry point -------------------------------------------------------------------------------- -This is third part of the Linux kernel initialization process series. In the previous [part](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-2.md) we saw early interupt and exception handling and will continue to dive into the linux kernel initialization process in the current part. Our next point is 'kernel entry point' - `start_kernel` function from the [init/main.c](https://github.com/torvalds/linux/blob/master/init/main.c) source code file. But before we will see call of the `start_kernel` function, we must do some preparations. So let's continue. +This is third part of the Linux kernel initialization process series. In the previous [part](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-2.md) we saw early interupt and exception handling and will continue to dive into the linux kernel initialization process in the current part. Our next point is 'kernel entry point' - `start_kernel` function from the [init/main.c](https://github.com/torvalds/linux/blob/master/init/main.c) source code file. Yes, technically it is not kernel's entry point but the start of the generic kernel code which does not depend on certain architecture. But before we will see call of the `start_kernel` function, we must do some preparations. So let's continue. Store real mode data in the --------------------------------------------------------------------------------