summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCraig Comstock <craig@unreasonablefarm.org>2017-12-07 08:44:19 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2017-12-07 09:06:32 +0700
commit2cac7e8ceffc8e7d4667b2f9f7477364b80716d0 (patch)
tree9513090fdb9db6e06c9a6e7e6ee1ada9757e14fc
parent238df986b9c705392898f74271c3258c16ffe927 (diff)
target/firmware: fix Mediatek firmware compilation
The existing Makefile.mtk isn't compatible with the current Makefile scheme, so nothing would happen when it was called. This change updates the Makefile.mtk, so the Mediatek firmware can be successfully compiled again. Change-Id: Iecd619ed862f4d825095292ffde50544e647f6ff
-rw-r--r--src/target/firmware/Makefile.mtk10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/target/firmware/Makefile.mtk b/src/target/firmware/Makefile.mtk
index 30fa2fcf..927e31a0 100644
--- a/src/target/firmware/Makefile.mtk
+++ b/src/target/firmware/Makefile.mtk
@@ -4,14 +4,16 @@ BOARDS?=mt62xx
# List of all applications (meant to be overridden on command line)
APPLICATIONS?=loader_mtk
-mtkram_LDS=board/mediatek/ram.lds
-mtkram_OBJS=board/mediatek/start.ram.o
+APP_loader_mtk_ENVIRONMENTS=mtkram
+
+ENV_mtkram_LDS=board/mediatek/ram.lds
+ENV_mtkram_OBJS=board/mediatek/start.ram.o
mtk_COMMON_OBJS=board/mediatek/uart.o
# Mediatek MT62xx
-mt62xx_OBJS=$(mtk_COMMON_OBJS) board/mt62xx/init.o
-mt62xx_ENVIRONMENTS=mtkram
+BOARD_mt62xx_OBJS=$(mtk_COMMON_OBJS) board/mt62xx/init.o
+BOARD_mt62xx_ENVIRONMENTS=mtkram
# Global include path
INCLUDES=-Iinclude/ -I../../../include -I../../shared/libosmocore/include