mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 16:31:06 +00:00
8d19aad601
The previously used RAM 0x0..0x10000000 was just an alias for 0x70000000..0x80000000. Qemu provides up to of 768 MB RAM with the correct -m argument. This RAM is located at 0x70000000..0x90000000 and 0x20000000..0x30000000. At least the noux_tool_chain scripts are happy to have that much RAM. ref #964
16 lines
424 B
Makefile
16 lines
424 B
Makefile
#
|
|
# \brief Offer build configurations that are specific to base-hw and PBXA9
|
|
# \author Martin Stein
|
|
# \date 2011-12-20
|
|
#
|
|
|
|
# denote wich specs are also fullfilled by this spec
|
|
SPECS += hw platform_pbxa9
|
|
|
|
# set address where to link text segment at
|
|
LD_TEXT_ADDR ?= 0x70000000
|
|
|
|
# include implied specs
|
|
include $(call select_from_repositories,mk/spec-hw.mk)
|
|
include $(call select_from_repositories,mk/spec-platform_pbxa9.mk)
|