mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 09:12:32 +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
11 lines
239 B
PHP
11 lines
239 B
PHP
#
|
|
# The content of this file is used for both native Genode as well as hybrid
|
|
# Linux/Genode programs. Hence, it must be void of any thread-related code.
|
|
#
|
|
|
|
include $(BASE_DIR)/lib/mk/base.inc
|
|
|
|
SRC_CC += platform.cc
|
|
|
|
LIBS += syscall-linux
|