mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
5b12034531
This is a generalisation approach of the hw_zynq target. As the boards typically use UART1 instead of UART0 (used by qemu), we have to distinguish between those. Moreover, in general hw_zynq does not imply zynq_qemu anymore, so that the support of particular boards can be placed in third-party or community repositories (e.g. Genode world). Fixes #1926
18 lines
398 B
Makefile
18 lines
398 B
Makefile
#
|
|
# \brief Offer build configurations that are specific to base-hw and Zynq
|
|
# \author Johannes Schlatow
|
|
# \date 2014-12-15
|
|
#
|
|
|
|
# denote which specs are also fulfilled by this spec
|
|
SPECS += hw
|
|
|
|
# configure multiprocessor mode
|
|
NR_OF_CPUS = 1
|
|
|
|
# set address where to link the text segment at
|
|
LD_TEXT_ADDR ?= 0x00100000
|
|
|
|
# include implied specs
|
|
include $(call select_from_repositories,mk/spec/hw.mk)
|