mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
a1e70b9ba4
Components like kernel, core, and bootstrap that are built for a specific board need to reside inside the same architectural dependent build directory. For instance there are sel4, foc, and hw kernel builds for imx6q_sabrelite and imx7d_sabre, which have to reside inside the same arm_v7 build directory. This commit names those components explicitely, and adapts the run-tool to it. Fix #3316
83 lines
2.3 KiB
PHP
83 lines
2.3 KiB
PHP
#
|
|
# Create prerequisites for building Genode for Fiasco.OC
|
|
#
|
|
# Prior building Genode programs for Fiasco.OC, the kernel bindings must be
|
|
# generated. This is done by building a minimalistic subset of the original
|
|
# userland (L4re) that comes with Fiasco.OC.
|
|
#
|
|
|
|
BOARD ?= unknown
|
|
L4_SRC_DIR := $(call select_from_ports,foc)/src/kernel/foc
|
|
L4_BUILD_DIR := $(shell pwd)/$(BOARD)-build
|
|
|
|
#
|
|
# Create mirror for architecture-specific L4sys header files
|
|
#
|
|
L4_INC_TARGETS += l4/sys \
|
|
l4f/l4/sys \
|
|
l4/sigma0 \
|
|
l4/cxx
|
|
|
|
CC_OPT += -Iinclude
|
|
|
|
include/%:
|
|
$(VERBOSE)mkdir -p $(dir $@)
|
|
$(VERBOSE)ln -sf $(L4_BUILD_DIR)/include/$* $@
|
|
|
|
#
|
|
# Use 'regparm=0' call instead of an inline function, when accessing
|
|
# the utcb. This is needed to stay compatible with L4linux
|
|
#
|
|
CC_OPT += -DL4SYS_USE_UTCB_WRAP=1 -Wno-unused-function
|
|
|
|
#
|
|
# Create L4 build directory
|
|
#
|
|
# Resetting the 'MAKEFLAGS' is important because otherwise, the L4
|
|
# build system will stuble over predefined variables, i.e., 'LIB'
|
|
#
|
|
$(L4_BUILD_DIR)/.kconfig:
|
|
$(VERBOSE_MK) set -o pipefail; \
|
|
MAKEFLAGS= $(MAKE) $(VERBOSE_DIR) -C $(L4_SRC_DIR)/l4 \
|
|
B=$(L4_BUILD_DIR) DROPSCONF_DEFCONFIG="$(L4_CONFIG)" \
|
|
VERBOSE="$(VERBOSE)" CROSS_COMPILE="$(CROSS_DEV_PREFIX)" \
|
|
2>&1 | sed "s/^/ [l4build] /"
|
|
|
|
PKGS := l4re-core/ldscripts \
|
|
l4re-core/libgcc-pure \
|
|
l4re-core/l4sys \
|
|
l4re-core/libgcc \
|
|
l4re-core/libsigma0 \
|
|
l4re-core/crtn \
|
|
l4re-core/uclibc-headers \
|
|
l4re-core/l4util \
|
|
l4re-core/cxx
|
|
|
|
include $(REP_DIR)/lib/mk/l4_pkg.inc
|
|
|
|
$(PKG_TAGS): $(L4_BUILD_DIR)/.kconfig
|
|
$(PKG_TAGS): $(addprefix include/,$(L4_INC_TARGETS))
|
|
|
|
#
|
|
# Compile 'syscall-foc.lib.a' not before the 'PKGS' are completely built
|
|
#
|
|
$(SRC_S) $(SRC_C) : $(PKG_TAGS)
|
|
|
|
#
|
|
# Install sigma0 and bootstap to <build-dir>/bin such that the binaries will be
|
|
# included in the depot's base-foc binary archives.
|
|
#
|
|
ifneq ($(INSTALL_DIR),)
|
|
all: $(INSTALL_DIR)/sigma0-foc-$(BOARD) $(INSTALL_DIR)/bootstrap-foc-$(BOARD)
|
|
|
|
$(INSTALL_DIR)/sigma0-foc-$(BOARD) $(INSTALL_DIR)/bootstrap-foc-$(BOARD): $(PKG_TAGS)
|
|
|
|
$(INSTALL_DIR)/sigma0-foc-$(BOARD):
|
|
$(VERBOSE)ln -sf $(L4_BIN_DIR)/l4f/sigma0 $@
|
|
|
|
$(INSTALL_DIR)/bootstrap-foc-$(BOARD):
|
|
$(VERBOSE)ln -sf $(L4_BIN_DIR)/bootstrap $@
|
|
endif
|
|
|
|
|