Commit 2d17de26 authored by Pietro Fezzardi's avatar Pietro Fezzardi Committed by Alessandro Rubini

Makefile: fix expansion of CONFIG_RAMSIZE

This adds 2.3kB to the GSI configuration, beause it enable ptpdump.
Earlier it was always forces off, due to wrong comparison of ram size.
parent 50470ca2
......@@ -118,7 +118,7 @@ all: tools $(OUTPUT).ram $(OUTPUT).vhd $(OUTPUT).mif
# we need to remove "ptpdump" support for ppsi if RAM size is small and
# we include etherbone
ifneq ($CONFIG_RAMSIZE,131072)
ifneq ($(CONFIG_RAMSIZE),131072)
ifdef CONFIG_ETHERBONE
PPSI_USER_CFLAGS = -DCONFIG_NO_PTPDUMP
endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment