Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit b39c7ff1 authored by flintman's avatar flintman Committed by Michael Bestas
Browse files

libart: Allow adjustment of the base address

On some devices the base address may need to be adjusted to
prevent overlapping of memory.  This will allow the adjustment
to take place in the boardconfig.mk

Change-Id: I17da0301960f1b0183db20b7b592eb1efd28343d
parent b351db80
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -27,7 +27,12 @@ COMPILED_CLASSES := $(call word-colon,1,$(firstword \

# start of image reserved address space
LIBART_IMG_HOST_BASE_ADDRESS   := 0x60000000

ifneq ($(LIBART_IMG_BASE),)
LIBART_IMG_TARGET_BASE_ADDRESS := $(LIBART_IMG_BASE)
else
LIBART_IMG_TARGET_BASE_ADDRESS := 0x70000000
endif

define get-product-default-property
$(strip $(patsubst $(1)=%,%,$(filter $(1)=%,$(PRODUCT_DEFAULT_PROPERTY_OVERRIDES))))