aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-07-22 17:00:52 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-07-22 17:00:52 +0200
commit68ff13d1b9c8ef164a056e2e340404480e778dd1 (patch)
tree8cef9c19f6d30ebdbc4a1e97dc8f7097ef6b4157
parent2cf3a3aa79568820d066cd5289c579188bce510f (diff)
downloadfarga-68ff13d1b9c8ef164a056e2e340404480e778dd1.tar.gz
farga-68ff13d1b9c8ef164a056e2e340404480e778dd1.zip
Update links to git.mssola.comHEADmain
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
-rw-r--r--arch/riscv/supervisor/hsm/README.md2
-rw-r--r--arch/riscv/supervisor/hsm/hsm.c2
-rw-r--r--kernel/vdso/vdso.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/arch/riscv/supervisor/hsm/README.md b/arch/riscv/supervisor/hsm/README.md
index a950152..2d5acfa 100644
--- a/arch/riscv/supervisor/hsm/README.md
+++ b/arch/riscv/supervisor/hsm/README.md
@@ -121,6 +121,6 @@ THE END
## Rationale
This example came after exploring the topic of SMP on
-[fbos](https://github.com/mssola/fbos). Even if in there I did not explore this
+[fbos](https://git.mssola.com/os/fbos). Even if in there I did not explore this
extension further (because of the needs of the project), I decided that I wanted
a fresh simple kernel to mess with this extension. And hence this project.
diff --git a/arch/riscv/supervisor/hsm/hsm.c b/arch/riscv/supervisor/hsm/hsm.c
index 0b2daca..373d981 100644
--- a/arch/riscv/supervisor/hsm/hsm.c
+++ b/arch/riscv/supervisor/hsm/hsm.c
@@ -7,7 +7,7 @@
extern void _start(void);
/*
- * Similar to the Linux kernel and what I did in https://github.com/mssola/fbos,
+ * Similar to the Linux kernel and what I did in https://git.mssola.com/os/fbos,
* harts will enter in a lottery when starting. See the README.md file for more
* details on this.
*/
diff --git a/kernel/vdso/vdso.c b/kernel/vdso/vdso.c
index 4aa7ae9..9bf67e4 100644
--- a/kernel/vdso/vdso.c
+++ b/kernel/vdso/vdso.c
@@ -9,10 +9,10 @@
#include <sys/auxv.h>
/*
- * In projects like github.com/mssola/fbos I already dealt with ELF parsing
- * myself and it wasn't the nicest experience. Plus, in here I have to do some
- * heavy usage of some ELF sections. For this reason I will not do things
- * manually and use the standard library instead.
+ * In projects like https://git.mssola.com/os/fbos I already dealt with ELF
+ * parsing myself and it wasn't the nicest experience. Plus, in here I have to
+ * do some heavy usage of some ELF sections. For this reason I will not do
+ * things manually and use the standard library instead.
*/
#include <elf.h>