1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 12:20:56 +00:00

Merge pull request #87 from gabesullice/linux-bootstrap-1-fix

Update Initialization/README.md grammar.
This commit is contained in:
0xAX 2015-03-31 22:44:07 +06:00
commit ce4e278aaa
2 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Kernel initialization process # Kernel initialization process
You will see here a couple of posts which describes full cycle of the kernel initialization from the first steps after kernel decompressed to starting of the first process runned by kernel. You will find here a couple of posts which describe the full cycle of kernel initialization from its first steps after the kernel has decompressed to the start of the first process run by the kernel itself.
* [First steps after kernel decompressed](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-1.md) - describes first steps in the kernel. * [First steps after kernel decompression](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-1.md) - describes first steps in the kernel.
* [Early interupt and exception handling](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-2.md) - describes early interrupts initialization and early page fault handler. * [Early interupt and exception handling](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-2.md) - describes early interrupts initialization and early page fault handler.
* [Last preparations before kernel entry point](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-3.md) - describes the last preparations before the call of the `start_kernel`. * [Last preparations before the kernel entry point](https://github.com/0xAX/linux-insides/blob/master/Initialization/linux-initialization-3.md) - describes the last preparations before the call of the `start_kernel`.

View File

@ -33,4 +33,5 @@ Thank you to all contributors:
* [Cam Cope](https://github.com/ccope) * [Cam Cope](https://github.com/ccope)
* [Miquel Sabaté Solà](https://github.com/mssola) * [Miquel Sabaté Solà](https://github.com/mssola)
* [Michael Aquilina](https://github.com/MichaelAquilina) * [Michael Aquilina](https://github.com/MichaelAquilina)
* [Gabriel Sullice](https://github.com/gabesullice)