mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 14:37:50 +00:00
61926ebc07
The new 'init_platform' function performs the platform-specific component-local low-level initialization. It allows for the differentiation between core and regular components as well as kernel-dependent peculiarities. This patch introduces a consistent notion of a 'Platform'. Within core, the 'Platform' contains the kernel-specific initialization. Outside core, the platform sets up the interplay with the parent component. In all cases, the platform is constructed while running on the initial stack. Issue #4784
15 lines
360 B
PHP
15 lines
360 B
PHP
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
include $(BASE_DIR)/lib/mk/base-common.inc
|
|
|
|
LIBS += startup-sel4 syscall-sel4
|
|
|
|
SRC_CC += rpc_dispatch_loop.cc
|
|
SRC_CC += thread.cc thread_myself.cc thread_bootstrap.cc
|
|
SRC_CC += capability.cc capability_raw.cc
|
|
SRC_CC += stack_area_addr.cc
|