mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 07:46:42 +00:00
cf943dac65
Put the initialization of the cpu cores, setup of page-tables, enabling of MMU and caches into a separate component that is only used to bootstrap the kernel resp. core. Ref #2092
12 lines
385 B
Makefile
12 lines
385 B
Makefile
INC_DIR += $(BASE_DIR)/../base-hw/src/core/include/spec/riscv
|
|
|
|
SRC_CC += bootstrap/spec/riscv/cpu.cc
|
|
SRC_CC += bootstrap/spec/riscv/exception_vector.cc
|
|
SRC_CC += bootstrap/spec/riscv/platform.cc
|
|
SRC_CC += lib/base/riscv/kernel/interface.cc
|
|
SRC_S += bootstrap/spec/riscv/crt0.s
|
|
SRC_S += core/spec/riscv/mode_transition.s
|
|
|
|
include $(BASE_DIR)/../base-hw/lib/mk/bootstrap-hw.inc
|
|
|