mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
ff10687a6c
Previously, ports that were needed for a scenario and that were not prepared or outdated, triggered one assertion each during the second build stage. The commit slots a mechanism in ahead that gathers all these ports during the first build stage and reports them in form of a list before the second build stage is entered. This list can be used directly as argument for tool/ports/prepare_port to prepare respectively update the ports. If, however, this mechanism is not available, for example because a target is build without the first build stage, the old assertion still prevents the target from running into troubles with a missing port. Fixes #1872
20 lines
492 B
Makefile
20 lines
492 B
Makefile
#
|
|
# Specifics for the NOVA kernel API
|
|
#
|
|
|
|
SPECS += nova
|
|
SPECS += pci ps2 vesa framebuffer
|
|
|
|
#
|
|
# Linker options that are specific for x86
|
|
#
|
|
LD_TEXT_ADDR ?= 0x01000000
|
|
|
|
#
|
|
# We would normally have to do this only in the kernel lib. We do it in
|
|
# general nonetheless to ensure that the kernel port, if missing, is added to
|
|
# the missing-ports list of the first build stage. The kernel lib is evaluated
|
|
# only at a later build stage.
|
|
#
|
|
NOVA_SRC_DIR := $(call select_from_ports,nova)/src/kernel/nova
|