# # 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. # L4_SRC_DIR := $(call select_from_ports,foc)/src/kernel/foc L4_BUILD_DIR := $(shell pwd)/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 /bin such that the binaries will be # included in the depot's base-foc binary archives. # ifneq ($(INSTALL_DIR),) all: $(INSTALL_DIR)/sigma0-foc $(INSTALL_DIR)/bootstrap-foc $(INSTALL_DIR)/sigma0-foc $(INSTALL_DIR)/bootstrap-foc: $(PKG_TAGS) $(INSTALL_DIR)/sigma0-foc: $(VERBOSE)ln -sf $(L4_BIN_DIR)/l4f/sigma0 $@ $(INSTALL_DIR)/bootstrap-foc: $(VERBOSE)ln -sf $(L4_BIN_DIR)/bootstrap $@ endif