mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
Kernel/riscv64: Make the kernel compile
This commits inserts TODOs into all necessary places to make the kernel compile on riscv64!
This commit is contained in:
parent
b6ac2ed34d
commit
da88d766b2
37 changed files with 633 additions and 5 deletions
|
@ -90,7 +90,7 @@ UNMAP_AFTER_INIT static void load_kernel_symbols_from_data(Bytes buffer)
|
|||
// of zero, so the address of a symbol does not need to be offset by the kernel_load_base.
|
||||
#if ARCH(X86_64)
|
||||
ksym.address = kernel_load_base + address;
|
||||
#elif ARCH(AARCH64)
|
||||
#elif ARCH(AARCH64) || ARCH(RISCV64)
|
||||
ksym.address = address;
|
||||
#else
|
||||
# error "Unknown architecture"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue