mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +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
16 lines
387 B
PHP
16 lines
387 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 += syscall-foc startup-foc
|
|
|
|
SRC_CC += spin_lock.cc cap_map.cc
|
|
SRC_CC += rpc_dispatch_loop.cc
|
|
SRC_CC += thread.cc thread_bootstrap.cc thread_myself.cc utcb.cc
|
|
SRC_CC += capability.cc
|
|
SRC_CC += signal_source_client.cc
|