소스 검색

Update linux-initialization-3.md

0xAX 10 년 전
부모
커밋
49d66d6d55
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Initialization/linux-initialization-3.md

+ 1 - 1
Initialization/linux-initialization-3.md

@@ -6,7 +6,7 @@ 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. 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
+Again boot_params
 --------------------------------------------------------------------------------
 
 In the previous part we stopped at the setting Interrupt Descriptor Table and loading it in the `IDTR` register. In the next step after we this we can see call of the `copy_bootdata` function: