mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-28 01:28:53 +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
14 lines
388 B
Makefile
14 lines
388 B
Makefile
#
|
|
# \brief Base lib parts that are not used by hybrid applications
|
|
# \author Sebastian Sumpf
|
|
# \date 2014-02-21
|
|
#
|
|
|
|
include $(REP_DIR)/lib/mk/base-linux.inc
|
|
|
|
LIBS += startup-linux base-linux-common cxx seccomp
|
|
SRC_CC += thread.cc thread_myself.cc thread_linux.cc
|
|
SRC_CC += capability_space.cc capability_raw.cc
|
|
SRC_CC += attach_stack_area.cc
|
|
SRC_CC += signal_transmitter.cc signal.cc
|