1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-11-01 04:29:39 +00:00
linux-insides/Initialization
Sebastian Fricke 2cff4abf08 Gitbook Links: replace old links with new ones
The old links didn't point to valid locations.
Replace the old links with the new links and test those changes with a
small script: https://github.com/initBasti/markdown_link_check .

______________________________________________________________

In order to find and replace the links, I used the following commands:

grep -rwohP '.' -e "\(https\:\/\/0xax.gitbooks.io\/\S*\)" > links.txt
(Find all links recursivly in the project directories and print out the
 only the matches links)

Within links.txt:
Remove the '(' & ')' => :%s/\(//g  and :%s/\)//g
Remove duplicates => :sort u

Test if the links work with:
python3 md_link_check.py --pattern 0xax.gitbook --output-file bad.txt
(https://github.com/initBasti/markdown_link_check)

Create replace commands:
:%s/.*/grep -rl & '.' | xargs sed -i 's#&##g'
Enter replacement URL between the 2nd & 3rd '#'
Execute commands: :w !sh

Signed-off-by: Sebastian Fricke <sebastian.fricke.linux@gmail.com>
2020-05-31 17:23:17 +02:00
..
images More image file salvaging 2019-10-10 19:54:55 +02:00
linux-initialization-1.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-2.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-3.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-4.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-5.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-6.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-7.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-8.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-9.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
linux-initialization-10.md Gitbook Links: replace old links with new ones 2020-05-31 17:23:17 +02:00
README.md Change README links as relative 2017-01-07 10:53:22 +03:00

Kernel initialization process

You will find here a couple of posts which describe the full cycle of kernel initialization from its first step after the kernel has been decompressed to the start of the first process run by the kernel itself.

Note That there will not be a description of the all kernel initialization steps. Here will be only generic kernel part, without interrupts handling, ACPI, and many other parts. All parts which I have missed, will be described in other chapters.