From 9cb49486906f9720787042473f2e31619de8c08f Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Thu, 3 Mar 2022 17:05:41 +0800 Subject: [PATCH] Makefile: Don't force generic USE_LITEDRAM=true That makes it easier to override a non-litedram build for testing RAM_INIT_FILE, eg make microwatt.dfu LITEDRAM_GHDL_ARG=-gUSE_LITEDRAM=false RAM_INIT_FILE=usb_hello/usb_hello.hex Signed-off-by: Matt Johnston --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 330ed48..a6834c5 100644 --- a/Makefile +++ b/Makefile @@ -212,7 +212,6 @@ ifneq ($(litedram_target),) soc_extra_synth += litedram/extras/litedram-wrapper-l2.vhdl \ litedram/generated/$(litedram_target)/litedram-initmem.vhdl soc_extra_v += litedram/generated/$(litedram_target)/litedram_core.v -LITEDRAM_GHDL_ARG=-gUSE_LITEDRAM=true endif GHDL_IMAGE_GENERICS=-gMEMORY_SIZE=$(MEMORY_SIZE) -gRAM_INIT_FILE=$(RAM_INIT_FILE) \