From 54966f002d713c89c23da31d4eaa23a33f9aa691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3dgger=20Bruno?= Date: Tue, 4 May 2021 09:30:19 -0400 Subject: [PATCH] Update linux-bootstrap-5.md --- Booting/linux-bootstrap-5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-5.md b/Booting/linux-bootstrap-5.md index eac0562..40efcca 100644 --- a/Booting/linux-bootstrap-5.md +++ b/Booting/linux-bootstrap-5.md @@ -204,7 +204,7 @@ Like before, we push `rsi` onto the stack to preserve the pointer to `boot_param * `output` - the start address of the decompressed kernel; * `output_len` - the size of the decompressed kernel; -All arguments will be passed through registers as per the [System V Application Binary Interface](http://www.x86-64.org/documentation/abi.pdf). We've finished all the preparations and can now decompress the kernel. +All arguments will be passed through registers as per the [System V Application Binary Interface](https://github.com/hjl-tools/x86-psABI/wiki/x86-64-psABI-1.0.pdf). We've finished all the preparations and can now decompress the kernel. Kernel decompression --------------------------------------------------------------------------------