mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-21 17:57:44 +00:00
By now all services in core where created, and registered in the generic main routine. Although there exists already a x86-specific service (I/O ports) there was no possibility to announce core-services for certain platforms only. This commit introduces a hook function in the 'Platform' class, that enables registration of platform-specific services. Moreover, the io-port service is offered on x86 platforms only now.
53 lines
1.9 KiB
PHP
53 lines
1.9 KiB
PHP
TARGET = core
|
|
LIBS = cxx ipc heap core_printf child pager lock \
|
|
raw_signal raw_server
|
|
|
|
GEN_CORE_DIR = $(BASE_DIR)/src/core
|
|
|
|
SRC_CC = \
|
|
main.cc \
|
|
ram_session_component.cc \
|
|
ram_session_support.cc \
|
|
rom_session_component.cc \
|
|
cpu_session_component.cc \
|
|
cpu_session_support.cc \
|
|
pd_session_component.cc \
|
|
io_mem_session_component.cc \
|
|
io_mem_session_support.cc \
|
|
thread.cc \
|
|
thread_host.cc \
|
|
thread_bootstrap.cc \
|
|
platform_thread.cc \
|
|
platform_pd.cc \
|
|
platform.cc \
|
|
platform_services.cc \
|
|
dataspace_component.cc \
|
|
rm_session_component.cc \
|
|
rm_session_support.cc \
|
|
io_port_session_component.cc \
|
|
irq_session_component.cc \
|
|
signal_session_component.cc \
|
|
signal_source_component.cc \
|
|
core_rm_session.cc \
|
|
context_area.cc
|
|
|
|
INC_DIR = $(REP_DIR)/src/core/include \
|
|
$(GEN_CORE_DIR)/include
|
|
|
|
vpath main.cc $(GEN_CORE_DIR)
|
|
vpath ram_session_component.cc $(GEN_CORE_DIR)
|
|
vpath rom_session_component.cc $(GEN_CORE_DIR)
|
|
vpath cpu_session_component.cc $(GEN_CORE_DIR)
|
|
vpath pd_session_component.cc $(GEN_CORE_DIR)
|
|
vpath rm_session_component.cc $(GEN_CORE_DIR)
|
|
vpath io_mem_session_component.cc $(GEN_CORE_DIR)
|
|
vpath io_mem_session_support.cc $(GEN_CORE_DIR)
|
|
vpath signal_session_component.cc $(GEN_CORE_DIR)
|
|
vpath signal_source_component.cc $(GEN_CORE_DIR)
|
|
vpath dataspace_component.cc $(GEN_CORE_DIR)
|
|
vpath platform_serices.cc $(GEN_CORE_DIR)
|
|
vpath %.cc $(REP_DIR)/src/core
|
|
vpath thread_bootstrap.cc $(BASE_DIR)/src/base/thread
|
|
vpath thread.cc $(BASE_DIR)/src/base/thread
|
|
|