mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-29 10:08:53 +00:00
42db1e112b
* introduces central memory map for core/kernel * on 32-bit platforms the kernel/core starts at 0x80000000 * on 64-bit platforms the kernel/core starts at 0xffffffc000000000 * mark kernel/core mappings as global ones (tagged TLB) * move the exception vector to begin of core's binary, thereby bootstrap knows from where to map it appropriately * do not map boot modules into core anymore * constrain core's virtual heap memory area * differentiate in between user's and core's main thread's UTCB, which now resides inside the kernel segment Ref #2091
11 lines
347 B
Makefile
11 lines
347 B
Makefile
INC_DIR += $(BASE_DIR)/../base-hw/src/bootstrap/spec/riscv
|
|
|
|
SRC_CC += bootstrap/spec/riscv/platform.cc
|
|
SRC_CC += lib/base/riscv/kernel/interface.cc
|
|
SRC_CC += spec/64bit/memory_map.cc
|
|
SRC_S += bootstrap/spec/riscv/crt0.s
|
|
|
|
vpath spec/64bit/memory_map.cc $(BASE_DIR)/../base-hw/src/lib/hw
|
|
|
|
include $(BASE_DIR)/../base-hw/lib/mk/bootstrap-hw.inc
|