From 942d69a30ca96428e0e300e417e097828dee1854 Mon Sep 17 00:00:00 2001 From: Adrian Costina Date: Tue, 18 Apr 2017 10:57:16 +0300 Subject: [PATCH] Makefiles: Change MMU enabling parameter for altera designs from MMU to NIOS2_MMU --- projects/adrv9371x/a10gx/Makefile | 6 +++--- projects/adrv9371x/a10soc/Makefile | 6 +++--- projects/arradio/c5soc/Makefile | 6 +++--- projects/common/a5gte/Makefile | 7 ++++--- projects/daq1/a10gx/Makefile | 6 +++--- projects/daq2/a10gx/Makefile | 6 +++--- projects/daq3/a10gx/Makefile | 6 +++--- projects/fmcjesdadc1/a5gt/Makefile | 6 +++--- projects/fmcjesdadc1/a5soc/Makefile | 6 +++--- projects/fmcomms2/a10gx/Makefile | 6 +++--- projects/usdrx1/a5gt/Makefile | 6 +++--- 11 files changed, 34 insertions(+), 33 deletions(-) diff --git a/projects/adrv9371x/a10gx/Makefile b/projects/adrv9371x/a10gx/Makefile index d9fd3fa32..3043a2397 100644 --- a/projects/adrv9371x/a10gx/Makefile +++ b/projects/adrv9371x/a10gx/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/adrv9371x/a10soc/Makefile b/projects/adrv9371x/a10soc/Makefile index 8ad079b44..b3036ff0d 100644 --- a/projects/adrv9371x/a10soc/Makefile +++ b/projects/adrv9371x/a10soc/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/arradio/c5soc/Makefile b/projects/arradio/c5soc/Makefile index 331896c67..5b995d72e 100644 --- a/projects/arradio/c5soc/Makefile +++ b/projects/arradio/c5soc/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/common/a5gte/Makefile b/projects/common/a5gte/Makefile index ee7bdeb71..fa267f826 100644 --- a/projects/common/a5gte/Makefile +++ b/projects/common/a5gte/Makefile @@ -5,14 +5,15 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_project.tcl +M_DEPS += system_constr.sdc M_DEPS += ../../scripts/adi_env.tcl diff --git a/projects/daq1/a10gx/Makefile b/projects/daq1/a10gx/Makefile index 9ff51f337..2e4c2cd42 100644 --- a/projects/daq1/a10gx/Makefile +++ b/projects/daq1/a10gx/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/daq2/a10gx/Makefile b/projects/daq2/a10gx/Makefile index 46e711556..36f7ae2aa 100644 --- a/projects/daq2/a10gx/Makefile +++ b/projects/daq2/a10gx/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/daq3/a10gx/Makefile b/projects/daq3/a10gx/Makefile index c26e221b0..fa86340f0 100644 --- a/projects/daq3/a10gx/Makefile +++ b/projects/daq3/a10gx/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/fmcjesdadc1/a5gt/Makefile b/projects/fmcjesdadc1/a5gt/Makefile index 4b7a52062..87cadb6a3 100644 --- a/projects/fmcjesdadc1/a5gt/Makefile +++ b/projects/fmcjesdadc1/a5gt/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/fmcjesdadc1/a5soc/Makefile b/projects/fmcjesdadc1/a5soc/Makefile index a66d9d27c..61570a358 100644 --- a/projects/fmcjesdadc1/a5soc/Makefile +++ b/projects/fmcjesdadc1/a5soc/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/fmcomms2/a10gx/Makefile b/projects/fmcomms2/a10gx/Makefile index 17d0a9aca..7cd0bdb91 100644 --- a/projects/fmcomms2/a10gx/Makefile +++ b/projects/fmcomms2/a10gx/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl diff --git a/projects/usdrx1/a5gt/Makefile b/projects/usdrx1/a5gt/Makefile index 2241c4c5a..0814c4ea9 100644 --- a/projects/usdrx1/a5gt/Makefile +++ b/projects/usdrx1/a5gt/Makefile @@ -5,11 +5,11 @@ #################################################################################### #################################################################################### -ifeq ($(MMU),) - MMU := 1 +ifeq ($(NIOS2_MMU),) + NIOS2_MMU := 1 endif -export ALT_NIOS_MMU_ENABLED := $(MMU) +export ALT_NIOS_MMU_ENABLED := $(NIOS2_MMU) M_DEPS += system_top.v M_DEPS += system_qsys.tcl