20 Commits (2cff4abf08711c4af60b3a801a13ee373bd93e2e)

Author SHA1 Message Date
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>
4 years ago
Yaroslav Pronin b0e971f17d
Fix typos 5 years ago
johnny 990f5a098b
Update linux-initialization-4.md
typo
5 years ago
Alexander Kuleshov e896e56c86
s/http/https for linux-insides 6 years ago
Dongliang Mu 49c8951eb8 modify broken links related with Thoery, Data structure, Misc and so on 6 years ago
Dongliang Mu f159c63e0c Change mm to MM, interrupts to Interrupts 6 years ago
JB Cayrou b96b249fdf Fix arch_local_irq_disable C code extract
In linux-initialization-4.md part, 'arch_local_irq_disable' is explained but the
code displayed is the 'arch_local_irq_enable' function.
7 years ago
Aaron Hill 17da4af718
Make all Github links reference a specific commit
Closes #480
7 years ago
Alexander Kuleshov df66966959
remove description of lockdep_init() 7 years ago
Alexander Kuleshov f3bc5949e2 Many fixes for initialization and MM related parts 8 years ago
Mack Stump 3fda046617 fix typos 8 years ago
haishanh fbe7909510 Fix some typos in chapter Initialization
linux-initialization-2.md:

 * `arlready -> already`
 * `instruuction -> instruction`

linux-initialization-3.md:

 * `initilized -> initialized`

linux-initialization-4.md:

 * `killobytes -> kilobytes`

linux-initialization-5.md:

 * `killobytes -> kilobytes`
 * `resason -> reason`
 * `subscract -> substract`
 * `comminicate -> communicate`
 * `initializtion -> initialization`
 * `Initiaization -> initialization`
 * `parameteres -> parameters`
8 years ago
zhaoxiaoqiang da85529d83 fix some grammer errors 9 years ago
zhaoxiaoqiang ae5cbb4c20 fix minor grammer errors 9 years ago
mudongliang ae6b0f52ee revert internals to insides in initialization 9 years ago
mudongliang dbfb8d4cd3 modify 'internals' to 'insides' 9 years ago
leboeuf a5a04676bb Fixed some typos and grammatical errors 9 years ago
Anton Davydov 984ef074ec Fix typos in repository 9 years ago
0xAX 806237c802 Update linux-initialization-4.md 9 years ago
0xAX 1315e69ca2 Create linux-initialization-4.md 9 years ago